|
11 | 11 | <properties>
|
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
13 | 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
14 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
15 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
| 14 | + <maven.compiler.source>11</maven.compiler.source> |
| 15 | + <maven.compiler.target>11</maven.compiler.target> |
16 | 16 | <!-- Liberty configuration -->
|
17 | 17 | <liberty.var.default.http.port>9080</liberty.var.default.http.port>
|
18 | 18 | <liberty.var.default.https.port>9443</liberty.var.default.https.port>
|
|
23 | 23 | <dependency>
|
24 | 24 | <groupId>jakarta.platform</groupId>
|
25 | 25 | <artifactId>jakarta.jakartaee-api</artifactId>
|
26 |
| - <version>9.1.0</version> |
| 26 | + <version>10.0.0</version> |
27 | 27 | <scope>provided</scope>
|
28 | 28 | </dependency>
|
29 | 29 | <dependency>
|
30 | 30 | <groupId>org.eclipse.microprofile</groupId>
|
31 | 31 | <!-- tag::microprofile[] -->
|
32 | 32 | <artifactId>microprofile</artifactId>
|
33 | 33 | <!-- end::microprofile[] -->
|
34 |
| - <version>5.0</version> |
| 34 | + <version>6.0</version> |
35 | 35 | <type>pom</type>
|
36 | 36 | <scope>provided</scope>
|
37 | 37 | </dependency>
|
38 | 38 | <!-- For tests -->
|
39 | 39 | <dependency>
|
40 | 40 | <groupId>org.junit.jupiter</groupId>
|
41 | 41 | <artifactId>junit-jupiter</artifactId>
|
42 |
| - <version>5.8.2</version> |
| 42 | + <version>5.9.2</version> |
43 | 43 | <scope>test</scope>
|
44 | 44 | </dependency>
|
45 | 45 | <dependency>
|
46 | 46 | <groupId>org.jboss.resteasy</groupId>
|
47 | 47 | <artifactId>resteasy-client</artifactId>
|
48 |
| - <version>6.0.0.Final</version> |
| 48 | + <version>6.2.3.Final</version> |
49 | 49 | <scope>test</scope>
|
50 | 50 | </dependency>
|
51 | 51 | <dependency>
|
52 | 52 | <groupId>org.jboss.resteasy</groupId>
|
53 | 53 | <artifactId>resteasy-json-binding-provider</artifactId>
|
54 |
| - <version>6.0.0.Final</version> |
| 54 | + <version>6.2.3.Final</version> |
55 | 55 | <scope>test</scope>
|
56 | 56 | </dependency>
|
57 | 57 | <dependency>
|
|
80 | 80 | <plugin>
|
81 | 81 | <groupId>org.apache.maven.plugins</groupId>
|
82 | 82 | <artifactId>maven-surefire-plugin</artifactId>
|
83 |
| - <version>2.22.2</version> |
| 83 | + <version>3.0.0</version> |
84 | 84 | </plugin>
|
85 | 85 | <!-- Enable liberty-maven plugin -->
|
86 | 86 | <plugin>
|
|
92 | 92 | <plugin>
|
93 | 93 | <groupId>org.apache.maven.plugins</groupId>
|
94 | 94 | <artifactId>maven-failsafe-plugin</artifactId>
|
95 |
| - <version>2.22.2</version> |
| 95 | + <version>3.0.0</version> |
96 | 96 | <configuration>
|
97 | 97 | <systemPropertyVariables>
|
98 | 98 | <default.http.port>${liberty.var.default.http.port}</default.http.port>
|
|
0 commit comments