|
10 | 10 | <packaging>war</packaging> |
11 | 11 |
|
12 | 12 | <properties> |
13 | | - <maven.compiler.source>1.8</maven.compiler.source> |
14 | | - <maven.compiler.target>1.8</maven.compiler.target> |
| 13 | + <maven.compiler.source>11</maven.compiler.source> |
| 14 | + <maven.compiler.target>11</maven.compiler.target> |
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
17 | 17 | <!-- Liberty configuration --> |
|
24 | 24 | <dependency> |
25 | 25 | <groupId>jakarta.platform</groupId> |
26 | 26 | <artifactId>jakarta.jakartaee-api</artifactId> |
27 | | - <version>9.1.0</version> |
| 27 | + <version>10.0.0</version> |
28 | 28 | <scope>provided</scope> |
29 | 29 | </dependency> |
30 | 30 | <dependency> |
31 | 31 | <groupId>org.eclipse.microprofile</groupId> |
32 | 32 | <artifactId>microprofile</artifactId> |
33 | | - <version>5.0</version> |
| 33 | + <version>6.0</version> |
34 | 34 | <type>pom</type> |
35 | 35 | <scope>provided</scope> |
36 | 36 | </dependency> |
37 | 37 | <!-- For tests --> |
38 | 38 | <dependency> |
39 | 39 | <groupId>org.junit.jupiter</groupId> |
40 | 40 | <artifactId>junit-jupiter</artifactId> |
41 | | - <version>5.8.2</version> |
| 41 | + <version>5.9.2</version> |
42 | 42 | <scope>test</scope> |
43 | 43 | </dependency> |
44 | 44 | <dependency> |
45 | 45 | <groupId>org.jboss.resteasy</groupId> |
46 | 46 | <artifactId>resteasy-client</artifactId> |
47 | | - <version>6.0.0.Final</version> |
| 47 | + <version>6.2.3.Final</version> |
48 | 48 | <scope>test</scope> |
49 | 49 | </dependency> |
50 | 50 | <dependency> |
51 | 51 | <groupId>org.jboss.resteasy</groupId> |
52 | 52 | <artifactId>resteasy-json-binding-provider</artifactId> |
53 | | - <version>6.0.0.Final</version> |
| 53 | + <version>6.2.3.Final</version> |
54 | 54 | <scope>test</scope> |
55 | 55 | </dependency> |
56 | 56 | <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 | <!-- Plugin to run functional tests --> |
86 | 86 | <!-- tag::maven-failsafe-plugin[] --> |
87 | 87 | <plugin> |
88 | 88 | <groupId>org.apache.maven.plugins</groupId> |
89 | 89 | <artifactId>maven-failsafe-plugin</artifactId> |
90 | | - <version>2.22.2</version> |
| 90 | + <version>3.0.0</version> |
91 | 91 | <configuration> |
92 | 92 | <systemPropertyVariables> |
93 | 93 | <http.port>${liberty.var.default.http.port}</http.port> |
|
0 commit comments