|
14 | 14 | <maven.compiler.source>11</maven.compiler.source>
|
15 | 15 | <maven.compiler.target>11</maven.compiler.target>
|
16 | 16 | <!-- Liberty configuration -->
|
17 |
| - <liberty.var.default.http.port>9080</liberty.var.default.http.port> |
18 |
| - <liberty.var.default.https.port>9443</liberty.var.default.https.port> |
| 17 | + <liberty.var.http.port>9080</liberty.var.http.port> |
| 18 | + <liberty.var.https.port>9443</liberty.var.https.port> |
19 | 19 | </properties>
|
20 | 20 |
|
21 | 21 | <dependencies>
|
|
29 | 29 | <dependency>
|
30 | 30 | <groupId>org.eclipse.microprofile</groupId>
|
31 | 31 | <artifactId>microprofile</artifactId>
|
32 |
| - <version>6.0</version> |
| 32 | + <version>6.1</version> |
33 | 33 | <type>pom</type>
|
34 | 34 | <scope>provided</scope>
|
35 | 35 | </dependency>
|
36 | 36 | <!-- For tests -->
|
37 | 37 | <dependency>
|
38 | 38 | <groupId>org.junit.jupiter</groupId>
|
39 | 39 | <artifactId>junit-jupiter</artifactId>
|
40 |
| - <version>5.9.2</version> |
| 40 | + <version>5.10.1</version> |
41 | 41 | <scope>test</scope>
|
42 | 42 | </dependency>
|
43 | 43 | <dependency>
|
44 | 44 | <groupId>org.jboss.resteasy</groupId>
|
45 | 45 | <artifactId>resteasy-client</artifactId>
|
46 |
| - <version>6.2.3.Final</version> |
| 46 | + <version>6.2.7.Final</version> |
47 | 47 | <scope>test</scope>
|
48 | 48 | </dependency>
|
49 | 49 | <dependency>
|
50 | 50 | <groupId>org.jboss.resteasy</groupId>
|
51 | 51 | <artifactId>resteasy-json-binding-provider</artifactId>
|
52 |
| - <version>6.2.3.Final</version> |
| 52 | + <version>6.2.7.Final</version> |
53 | 53 | <scope>test</scope>
|
54 | 54 | </dependency>
|
55 | 55 | <dependency>
|
|
62 | 62 | <dependency>
|
63 | 63 | <groupId>org.apache.commons</groupId>
|
64 | 64 | <artifactId>commons-lang3</artifactId>
|
65 |
| - <version>3.12.0</version> |
| 65 | + <version>3.14.0</version> |
66 | 66 | </dependency>
|
67 | 67 | </dependencies>
|
68 | 68 |
|
|
78 | 78 | <plugin>
|
79 | 79 | <groupId>org.apache.maven.plugins</groupId>
|
80 | 80 | <artifactId>maven-surefire-plugin</artifactId>
|
81 |
| - <version>3.0.0</version> |
| 81 | + <version>3.2.5</version> |
82 | 82 | </plugin>
|
83 | 83 | <!-- Enable liberty-maven plugin -->
|
84 | 84 | <plugin>
|
85 | 85 | <groupId>io.openliberty.tools</groupId>
|
86 | 86 | <artifactId>liberty-maven-plugin</artifactId>
|
87 |
| - <version>3.8.2</version> |
| 87 | + <version>3.10</version> |
88 | 88 | </plugin>
|
89 | 89 | <!-- Plugin to run functional tests -->
|
90 | 90 | <plugin>
|
91 | 91 | <groupId>org.apache.maven.plugins</groupId>
|
92 | 92 | <artifactId>maven-failsafe-plugin</artifactId>
|
93 |
| - <version>3.0.0</version> |
| 93 | + <version>3.2.5</version> |
94 | 94 | <configuration>
|
95 | 95 | <systemPropertyVariables>
|
96 |
| - <default.http.port>${liberty.var.default.http.port}</default.http.port> |
97 |
| - <default.https.port>${liberty.var.default.https.port}</default.https.port> |
| 96 | + <http.port>${liberty.var.http.port}</http.port> |
| 97 | + <https.port>${liberty.var.https.port}</https.port> |
98 | 98 | </systemPropertyVariables>
|
99 | 99 | </configuration>
|
100 | 100 | </plugin>
|
|
0 commit comments