|
36 | 36 | <properties> |
37 | 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
38 | 38 | <spring.boot-version>2.7.18</spring.boot-version> |
39 | | - <elasticsearch.version>8.2.0</elasticsearch.version> |
| 39 | + <elasticsearch.version>8.11.2</elasticsearch.version> |
40 | 40 | <junit-jupiter.version>5.10.0</junit-jupiter.version> |
41 | 41 | <skipITs>true</skipITs> |
42 | 42 | <skipITCoverage>true</skipITCoverage> |
|
55 | 55 | </dependencies> |
56 | 56 | </dependencyManagement> |
57 | 57 | <dependencies> |
58 | | - <!-- The following 3 dependencies are temporarily added for java 11 compatibility |
59 | | - TODO They should be removed as soon as possible. --> |
60 | | - <dependency> |
61 | | - <groupId>javax.xml.bind</groupId> |
62 | | - <artifactId>jaxb-api</artifactId> |
63 | | - <version>2.3.0</version> |
64 | | - </dependency> |
65 | | - <dependency> |
66 | | - <groupId>com.sun.xml.bind</groupId> |
67 | | - <artifactId>jaxb-core</artifactId> |
68 | | - <version>2.3.0</version> |
69 | | - </dependency> |
70 | | - <dependency> |
71 | | - <groupId>com.sun.xml.bind</groupId> |
72 | | - <artifactId>jaxb-impl</artifactId> |
73 | | - <version>2.3.0</version> |
74 | | - </dependency> |
75 | | - <!-- The above 3 dependencies are temporarily added for java 11 compatibility --> |
76 | 58 | <dependency> |
77 | 59 | <groupId>org.springframework.boot</groupId> |
78 | 60 | <artifactId>spring-boot-starter</artifactId> |
|
85 | 67 | <groupId>org.springframework.data</groupId> |
86 | 68 | <artifactId>spring-data-commons</artifactId> |
87 | 69 | </dependency> |
88 | | - <dependency> |
89 | | - <groupId>javax.servlet</groupId> |
90 | | - <artifactId>javax.servlet-api</artifactId> |
91 | | - <scope>provided</scope> |
92 | | - </dependency> |
93 | 70 | <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API --> |
94 | 71 | <dependency> |
95 | 72 | <groupId>org.junit.jupiter</groupId> |
|
100 | 77 | <dependency> |
101 | 78 | <groupId>co.elastic.clients</groupId> |
102 | 79 | <artifactId>elasticsearch-java</artifactId> |
103 | | - <version>8.2.0</version> |
| 80 | + <version>${elasticsearch.version}</version> |
104 | 81 | </dependency> |
105 | 82 | <dependency> |
106 | 83 | <groupId>com.fasterxml.jackson.core</groupId> |
|
110 | 87 | <dependency> |
111 | 88 | <groupId>com.fasterxml.jackson.core</groupId> |
112 | 89 | <artifactId>jackson-core</artifactId> |
113 | | - <version>2.14.2</version> |
| 90 | + <version>2.16.0</version> |
114 | 91 | </dependency> |
115 | 92 | <dependency> |
116 | 93 | <groupId>jakarta.json</groupId> |
|
155 | 132 | <dependency> |
156 | 133 | <groupId>org.phoebus</groupId> |
157 | 134 | <artifactId>core-pva</artifactId> |
158 | | - <version>4.7.2</version> |
| 135 | + <version>4.7.3</version> |
159 | 136 | </dependency> |
160 | 137 |
|
161 | 138 | <dependency> |
|
255 | 232 | <includes> |
256 | 233 | <include>**/*IT.java</include> |
257 | 234 | </includes> |
| 235 | + <excludes> |
| 236 | + <exclude>**/EpicsRPCRequestIT.java</exclude> |
| 237 | + </excludes> |
258 | 238 | </configuration> |
259 | 239 | </plugin> |
260 | 240 | <plugin> |
|
343 | 323 | <artifactId>maven-compiler-plugin</artifactId> |
344 | 324 | <version>3.11.0</version> |
345 | 325 | <configuration> |
346 | | - <source>11</source> |
347 | | - <target>11</target> |
| 326 | + <source>17</source> |
| 327 | + <target>17</target> |
348 | 328 | <encoding>${project.build.sourceEncoding}</encoding> |
349 | 329 | </configuration> |
350 | 330 | </plugin> |
|
420 | 400 | <additionalOptions> |
421 | 401 | <additionalOption>-Xdoclint:none</additionalOption> |
422 | 402 | </additionalOptions> |
423 | | - <source>11</source> |
| 403 | + <source>17</source> |
424 | 404 | </configuration> |
425 | 405 | </execution> |
426 | 406 | </executions> |
|
0 commit comments