|
23 | 23 | <skipJACC>${skipTests}</skipJACC> |
24 | 24 |
|
25 | 25 | <!-- |
26 | | - Application Server versions |
27 | | - (these are downloaded and installed in these versions by Maven for the CI profiles) |
| 26 | + Application Server versions |
| 27 | + (these are downloaded and installed in these versions by Maven for the CI profiles) |
28 | 28 | --> |
29 | | - <payara.version>4.1.1.171.1</payara.version> |
| 29 | + <payara.version>4.1.2.173-SNAPSHOT</payara.version> |
30 | 30 | <glassfish.version>4.1.1</glassfish.version> |
31 | 31 | <liberty.version>16.0.0.3</liberty.version> |
32 | 32 | <wildfly.version>10.1.0.Final</wildfly.version> |
|
38 | 38 | <prerequisites> |
39 | 39 | <maven>${maven.min.version}</maven> |
40 | 40 | </prerequisites> |
| 41 | + |
| 42 | + <repositories> |
| 43 | + <repository> |
| 44 | + <id>central</id> |
| 45 | + <name>Central Repository</name> |
| 46 | + |
| 47 | + <url>https://repo.maven.apache.org/maven2</url> |
| 48 | + |
| 49 | + <releases> |
| 50 | + <enabled>true</enabled> |
| 51 | + </releases> |
| 52 | + <snapshots> |
| 53 | + <enabled>false</enabled> |
| 54 | + </snapshots> |
| 55 | + </repository> |
| 56 | + |
| 57 | + <repository> |
| 58 | + <id>ossrh</id> |
| 59 | + <name>Sonatype-snapshot</name> |
| 60 | + |
| 61 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 62 | + |
| 63 | + <releases> |
| 64 | + <enabled>false</enabled> |
| 65 | + </releases> |
| 66 | + <snapshots> |
| 67 | + <enabled>true</enabled> |
| 68 | + <updatePolicy>always</updatePolicy> |
| 69 | + </snapshots> |
| 70 | + </repository> |
| 71 | + </repositories> |
41 | 72 |
|
42 | 73 |
|
43 | 74 | <!-- The Java EE 7 specs that this project is providing samples for. |
|
306 | 337 | </activation> |
307 | 338 |
|
308 | 339 | <dependencies> |
| 340 | + |
| 341 | + <!-- WebSocket client dependencies --> |
309 | 342 | <dependency> |
310 | | - <groupId>org.jboss.arquillian.container</groupId> |
311 | | - <artifactId>arquillian-glassfish-managed-3.1</artifactId> |
312 | | - <version>1.0.0.Final</version> |
| 343 | + <groupId>org.glassfish.tyrus</groupId> |
| 344 | + <artifactId>tyrus-client</artifactId> |
| 345 | + <version>1.13</version> |
| 346 | + <scope>test</scope> |
| 347 | + </dependency> |
| 348 | + <dependency> |
| 349 | + <groupId>org.glassfish.tyrus</groupId> |
| 350 | + <artifactId>tyrus-container-grizzly-client</artifactId> |
| 351 | + <version>1.13</version> |
| 352 | + <scope>test</scope> |
| 353 | + </dependency> |
| 354 | + |
| 355 | + |
| 356 | + <!-- JAX-RS client API dependencies --> |
| 357 | + <dependency> |
| 358 | + <groupId>org.glassfish.jersey.media</groupId> |
| 359 | + <artifactId>jersey-media-json-jackson</artifactId> |
| 360 | + <version>2.25.1</version> |
| 361 | + <scope>test</scope> |
| 362 | + </dependency> |
| 363 | + <dependency> |
| 364 | + <groupId>org.glassfish.jersey.media</groupId> |
| 365 | + <artifactId>jersey-media-json-processing</artifactId> |
| 366 | + <version>2.25.1</version> |
| 367 | + <scope>test</scope> |
| 368 | + </dependency> |
| 369 | + |
| 370 | + <!-- The actual Arquillian connector --> |
| 371 | + <dependency> |
| 372 | + <groupId>org.omnifaces</groupId> |
| 373 | + <artifactId>arquillian-payara-server-4-managed</artifactId> |
| 374 | + <version>1.0-beta-SNAPSHOT</version> |
313 | 375 | <scope>test</scope> |
314 | 376 | </dependency> |
315 | 377 | </dependencies> |
|
339 | 401 | </artifactItems> |
340 | 402 | </configuration> |
341 | 403 | </execution> |
342 | | - |
343 | | - <execution> |
344 | | - <id>copy</id> |
345 | | - <phase>process-test-classes</phase> |
346 | | - <goals> |
347 | | - <goal>copy</goal> |
348 | | - </goals> |
349 | | - <configuration> |
350 | | - <artifactItems> |
351 | | - <artifactItem> |
352 | | - <groupId>org.jboss.classfilewriter</groupId> |
353 | | - <artifactId>jboss-classfilewriter</artifactId> |
354 | | - <version>1.2.1.Final</version> |
355 | | - <overWrite>true</overWrite> |
356 | | - <outputDirectory>${session.executionRootDirectory}/target/payara41/glassfish/modules</outputDirectory> |
357 | | - </artifactItem> |
358 | | - </artifactItems> |
359 | | - <stripClassifier>true</stripClassifier> |
360 | | - <stripVersion>true</stripVersion> |
361 | | - </configuration> |
362 | | - </execution> |
363 | | - |
364 | 404 | </executions> |
365 | 405 | </plugin> |
366 | 406 | <plugin> |
|
370 | 410 | <environmentVariables> |
371 | 411 | <GLASSFISH_HOME>${session.executionRootDirectory}/target/payara41</GLASSFISH_HOME> |
372 | 412 | </environmentVariables> |
| 413 | + <!-- This needs tuning --> |
| 414 | + <systemPropertyVariables> |
| 415 | + <glassfishRemote_gfHome>${session.executionRootDirectory}/target/payara41</glassfishRemote_gfHome> |
| 416 | + <javaEEServer>payara-remote</javaEEServer> |
| 417 | + <arquillian.launch>payara</arquillian.launch> |
| 418 | + </systemPropertyVariables> |
373 | 419 | </configuration> |
374 | 420 | </plugin> |
375 | 421 | </plugins> |
|
409 | 455 | <version>2.25</version> |
410 | 456 | <scope>test</scope> |
411 | 457 | </dependency> |
| 458 | + |
412 | 459 | <dependency> |
413 | 460 | <groupId>org.jboss.arquillian.container</groupId> |
414 | 461 | <artifactId>arquillian-glassfish-embedded-3.1</artifactId> |
|
432 | 479 |
|
433 | 480 | <profile> |
434 | 481 | <id>payara-remote</id> |
| 482 | + |
435 | 483 | <dependencies> |
436 | 484 | <dependency> |
437 | 485 | <groupId>org.glassfish</groupId> |
438 | 486 | <artifactId>javax.json</artifactId> |
439 | 487 | <version>1.0.4</version> |
440 | 488 | <scope>test</scope> |
441 | 489 | </dependency> |
| 490 | + |
| 491 | + <!-- WebSocket client dependencies --> |
442 | 492 | <dependency> |
443 | 493 | <groupId>org.glassfish.tyrus</groupId> |
444 | 494 | <artifactId>tyrus-client</artifactId> |
|
451 | 501 | <version>1.13</version> |
452 | 502 | <scope>test</scope> |
453 | 503 | </dependency> |
454 | | - <dependency> |
455 | | - <groupId>org.glassfish.jersey.core</groupId> |
456 | | - <artifactId>jersey-client</artifactId> |
457 | | - <version>2.25</version> |
458 | | - <scope>test</scope> |
459 | | - </dependency> |
| 504 | + |
| 505 | + <!-- JAX-RS client API dependencies --> |
460 | 506 | <dependency> |
461 | 507 | <groupId>org.glassfish.jersey.media</groupId> |
462 | 508 | <artifactId>jersey-media-json-jackson</artifactId> |
463 | | - <version>2.25</version> |
| 509 | + <version>2.25.1</version> |
464 | 510 | <scope>test</scope> |
465 | 511 | </dependency> |
466 | 512 | <dependency> |
467 | 513 | <groupId>org.glassfish.jersey.media</groupId> |
468 | 514 | <artifactId>jersey-media-json-processing</artifactId> |
469 | | - <version>2.25</version> |
| 515 | + <version>2.25.1</version> |
470 | 516 | <scope>test</scope> |
471 | 517 | </dependency> |
| 518 | + |
| 519 | + <!-- The actual Arquillian connector --> |
472 | 520 | <dependency> |
473 | | - <groupId>org.jboss.arquillian.container</groupId> |
474 | | - <artifactId>arquillian-glassfish-remote-3.1</artifactId> |
475 | | - <version>1.0.0.Final</version> |
| 521 | + <groupId>org.omnifaces</groupId> |
| 522 | + <artifactId>arquillian-payara-server-4-remote</artifactId> |
| 523 | + <version>1.0-beta-SNAPSHOT</version> |
476 | 524 | <scope>test</scope> |
477 | 525 | </dependency> |
478 | 526 | </dependencies> |
479 | 527 | <build> |
480 | | - <plugins> |
| 528 | + <plugins> |
481 | 529 | <plugin> |
482 | 530 | <artifactId>maven-surefire-plugin</artifactId> |
483 | 531 | <configuration> |
|
1179 | 1227 | <groupId>org.jboss.arquillian.container</groupId> |
1180 | 1228 | <artifactId>arquillian-wlp-managed-8.5</artifactId> |
1181 | 1229 | <version>1.0.0.Beta2</version> |
1182 | | - </dependency> |
| 1230 | + </dependency> |
1183 | 1231 | <dependency> |
1184 | 1232 | <groupId>org.glassfish.tyrus</groupId> |
1185 | 1233 | <artifactId>tyrus-client</artifactId> |
1186 | 1234 | <version>1.3</version> |
1187 | 1235 | <scope>test</scope> |
1188 | | - </dependency> |
| 1236 | + </dependency> |
1189 | 1237 | <dependency> |
1190 | 1238 | <groupId>org.glassfish</groupId> |
1191 | 1239 | <artifactId>javax.json</artifactId> |
1192 | 1240 | <version>1.0.4</version> |
1193 | 1241 | <scope>test</scope> |
1194 | | - </dependency> |
| 1242 | + </dependency> |
1195 | 1243 | <dependency> |
1196 | 1244 | <groupId>org.glassfish.tyrus</groupId> |
1197 | 1245 | <artifactId>tyrus-container-grizzly-client</artifactId> |
|
0 commit comments