|
10 | 10 | <name>Java EE 7 Sample: javaee7-samples</name> |
11 | 11 |
|
12 | 12 | <properties> |
13 | | - <arquillian.version>1.1.14.Final</arquillian.version> |
| 13 | + <arquillian.version>1.4.1.Final</arquillian.version> |
14 | 14 | <java.min.version>1.7</java.min.version> |
15 | 15 | <maven.min.version>3.0.0</maven.min.version> |
16 | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
125 | 125 | <dependency> |
126 | 126 | <groupId>com.h2database</groupId> |
127 | 127 | <artifactId>h2</artifactId> |
128 | | - <version>1.4.195</version> |
| 128 | + <version>1.4.197</version> |
129 | 129 | </dependency> |
130 | 130 | <dependency> |
131 | 131 | <groupId>fish.payara.arquillian</groupId> |
|
160 | 160 | <dependency> |
161 | 161 | <groupId>org.hamcrest</groupId> |
162 | 162 | <artifactId>hamcrest-core</artifactId> |
163 | | - <version>1.3</version> |
| 163 | + <version>2.1</version> |
164 | 164 | <scope>test</scope> |
165 | 165 | </dependency> |
166 | 166 | <dependency> |
167 | 167 | <groupId>org.hamcrest</groupId> |
168 | 168 | <artifactId>hamcrest-library</artifactId> |
169 | | - <version>1.3</version> |
| 169 | + <version>2.1</version> |
170 | 170 | <scope>test</scope> |
171 | 171 | </dependency> |
172 | 172 | <!-- Alternative to Hamcrest matchers. Provides fluent, type-aware API --> |
|
200 | 200 | <dependency> |
201 | 201 | <groupId>xmlunit</groupId> |
202 | 202 | <artifactId>xmlunit</artifactId> |
203 | | - <version>1.5</version> |
| 203 | + <version>1.6</version> |
204 | 204 | <scope>test</scope> |
205 | 205 | </dependency> |
206 | 206 | <dependency> |
207 | 207 | <groupId>org.skyscreamer</groupId> |
208 | 208 | <artifactId>jsonassert</artifactId> |
209 | | - <version>1.2.1</version> |
| 209 | + <version>1.5.0</version> |
210 | 210 | <scope>test</scope> |
211 | 211 | </dependency> |
212 | 212 | <!-- TODO: remove this dependency, only htmlunit should be needed --> |
|
219 | 219 | <dependency> |
220 | 220 | <groupId>net.sourceforge.htmlunit</groupId> |
221 | 221 | <artifactId>htmlunit</artifactId> |
222 | | - <version>2.31</version> |
| 222 | + <version>2.33</version> |
223 | 223 | <scope>test</scope> |
224 | 224 | </dependency> |
225 | 225 | <dependency> |
226 | 226 | <groupId>rhino</groupId> |
227 | 227 | <artifactId>js</artifactId> |
228 | | - <version>1.7R1</version> |
| 228 | + <version>1.7R2</version> |
229 | 229 | <scope>test</scope> |
230 | 230 | </dependency> |
231 | 231 | <dependency> |
232 | 232 | <groupId>org.json</groupId> |
233 | 233 | <artifactId>json</artifactId> |
234 | | - <version>20131018</version> |
| 234 | + <version>20180813</version> |
235 | 235 | <scope>test</scope> |
236 | 236 | </dependency> |
237 | 237 | <dependency> |
238 | 238 | <groupId>com.jayway.awaitility</groupId> |
239 | 239 | <artifactId>awaitility</artifactId> |
240 | | - <version>1.6.0</version> |
| 240 | + <version>1.7.0</version> |
| 241 | + <scope>test</scope> |
| 242 | + </dependency> |
| 243 | + <dependency> |
| 244 | + <groupId>org.omnifaces</groupId> |
| 245 | + <artifactId>omniutils</artifactId> |
| 246 | + <version>0.11</version> |
241 | 247 | <scope>test</scope> |
242 | 248 | </dependency> |
243 | 249 | <dependency> |
244 | | - <groupId>org.omnifaces</groupId> |
245 | | - <artifactId>omniutils</artifactId> |
246 | | - <version>0.10</version> |
247 | | - <scope>test</scope> |
| 250 | + <groupId>jakarta.xml.bind</groupId> |
| 251 | + <artifactId>jakarta.xml.bind-api</artifactId> |
| 252 | + <version>2.3.2</version> |
| 253 | + </dependency> |
| 254 | + <dependency> |
| 255 | + <groupId>org.glassfish.jaxb</groupId> |
| 256 | + <artifactId>jaxb-runtime</artifactId> |
| 257 | + <version>2.3.2</version> |
248 | 258 | </dependency> |
249 | 259 | </dependencies> |
250 | 260 |
|
|
263 | 273 | <plugin> |
264 | 274 | <groupId>org.apache.maven.plugins</groupId> |
265 | 275 | <artifactId>maven-compiler-plugin</artifactId> |
266 | | - <version>3.6.1</version> |
| 276 | + <version>3.8.0</version> |
267 | 277 | <configuration> |
268 | 278 | <source>${java.min.version}</source> |
269 | 279 | <target>${java.min.version}</target> |
|
272 | 282 | <plugin> |
273 | 283 | <groupId>org.apache.maven.plugins</groupId> |
274 | 284 | <artifactId>maven-surefire-report-plugin</artifactId> |
275 | | - <version>2.19.1</version> |
| 285 | + <version>3.0.0-M3</version> |
276 | 286 | <configuration> |
277 | 287 | <aggregate>true</aggregate> |
278 | 288 | <linkXRef>true</linkXRef> |
|
281 | 291 | <plugin> |
282 | 292 | <groupId>org.apache.maven.plugins</groupId> |
283 | 293 | <artifactId>maven-war-plugin</artifactId> |
284 | | - <version>3.0.0</version> |
| 294 | + <version>3.2.2</version> |
285 | 295 | <configuration> |
286 | 296 | <attachClasses>true</attachClasses> |
287 | 297 | <failOnMissingWebXml>false</failOnMissingWebXml> |
|
322 | 332 | <plugin> |
323 | 333 | <groupId>org.apache.maven.plugins</groupId> |
324 | 334 | <artifactId>maven-enforcer-plugin</artifactId> |
325 | | - <version>1.3.1</version> |
| 335 | + <version>3.0.0-M2</version> |
326 | 336 | </plugin> |
327 | 337 | <plugin> |
328 | 338 | <groupId>org.apache.maven.plugins</groupId> |
329 | 339 | <artifactId>maven-surefire-plugin</artifactId> |
330 | | - <version>2.19.1</version> |
| 340 | + <version>3.0.0-M3</version> |
331 | 341 | </plugin> |
332 | 342 | </plugins> |
333 | 343 | </pluginManagement> |
|
0 commit comments