|
13 | 13 | <maven.compiler.target>11</maven.compiler.target>
|
14 | 14 | <!-- Liberty configuration -->
|
15 | 15 | <hazelcast.path>${user.home}/.m2/repository/com/hazelcast/hazelcast/</hazelcast.path>
|
16 |
| - <liberty.var.default.http.port>9080</liberty.var.default.http.port> |
17 |
| - <liberty.var.default.https.port>9443</liberty.var.default.https.port> |
| 16 | + <liberty.var.http.port>9090</liberty.var.http.port> |
| 17 | + <liberty.var.https.port>9453</liberty.var.https.port> |
18 | 18 | <liberty.var.app.context.root>${project.artifactId}</liberty.var.app.context.root>
|
19 | 19 | </properties>
|
20 | 20 |
|
|
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>
|
|
38 | 38 | <dependency>
|
39 | 39 | <groupId>com.hazelcast</groupId>
|
40 | 40 | <artifactId>hazelcast</artifactId>
|
41 |
| - <version>5.3.0</version> |
| 41 | + <version>5.3.6</version> |
42 | 42 | <scope>test</scope>
|
43 | 43 | </dependency>
|
44 | 44 |
|
45 | 45 | <!-- For tests -->
|
46 | 46 | <dependency>
|
47 | 47 | <groupId>org.junit.jupiter</groupId>
|
48 | 48 | <artifactId>junit-jupiter</artifactId>
|
49 |
| - <version>5.9.2</version> |
| 49 | + <version>5.10.1</version> |
50 | 50 | <scope>test</scope>
|
51 | 51 | </dependency>
|
52 | 52 | <dependency>
|
53 | 53 | <groupId>org.jboss.resteasy</groupId>
|
54 | 54 | <artifactId>resteasy-client</artifactId>
|
55 |
| - <version>6.2.3.Final</version> |
| 55 | + <version>6.2.7.Final</version> |
56 | 56 | <scope>test</scope>
|
57 | 57 | </dependency>
|
58 | 58 | <dependency>
|
59 | 59 | <groupId>org.jboss.resteasy</groupId>
|
60 | 60 | <artifactId>resteasy-json-binding-provider</artifactId>
|
61 |
| - <version>6.2.3.Final</version> |
| 61 | + <version>6.2.7.Final</version> |
62 | 62 | <scope>test</scope>
|
63 | 63 | </dependency>
|
64 | 64 | <dependency>
|
|
82 | 82 | <plugin>
|
83 | 83 | <groupId>io.openliberty.tools</groupId>
|
84 | 84 | <artifactId>liberty-maven-plugin</artifactId>
|
85 |
| - <version>3.8.2</version> |
| 85 | + <version>3.10</version> |
86 | 86 | <!-- tag::configuration[] -->
|
87 | 87 | <configuration>
|
88 | 88 | <!-- Copy the hazelcast library -->
|
|
92 | 92 | <dependency>
|
93 | 93 | <groupId>com.hazelcast</groupId>
|
94 | 94 | <artifactId>hazelcast</artifactId>
|
95 |
| - <version>5.3.0</version> |
| 95 | + <version>5.3.6</version> |
96 | 96 | </dependency>
|
97 | 97 | </dependencyGroup>
|
98 | 98 | </copyDependencies>
|
|
104 | 104 | <plugin>
|
105 | 105 | <groupId>org.apache.maven.plugins</groupId>
|
106 | 106 | <artifactId>maven-surefire-plugin</artifactId>
|
107 |
| - <version>3.0.0</version> |
| 107 | + <version>3.2.5</version> |
108 | 108 | </plugin>
|
109 | 109 |
|
110 | 110 | <!-- Plugin to run functional tests -->
|
111 | 111 | <plugin>
|
112 | 112 | <groupId>org.apache.maven.plugins</groupId>
|
113 | 113 | <artifactId>maven-failsafe-plugin</artifactId>
|
114 |
| - <version>3.0.0</version> |
| 114 | + <version>3.2.5</version> |
115 | 115 | <configuration>
|
116 | 116 | <systemPropertyVariables>
|
117 |
| - <http.port>${liberty.var.default.http.port}</http.port> |
| 117 | + <http.port>${liberty.var.http.port}</http.port> |
118 | 118 | </systemPropertyVariables>
|
119 | 119 | </configuration>
|
120 | 120 | </plugin>
|
|
0 commit comments