|
25 | 25 |
|
26 | 26 | <!-- Application Server versions (these are downloaded and installed |
27 | 27 | in these versions by Maven for the CI profiles) --> |
28 | | - <payara.version>5.Beta1</payara.version> |
| 28 | + <payara.version>5.Beta2</payara.version> |
29 | 29 | <glassfish.version>4.1.1</glassfish.version> |
30 | | - <tomcat.version>8.5.6</tomcat.version> |
| 30 | + <tomcat.version>9.0.4</tomcat.version> |
31 | 31 | </properties> |
32 | 32 |
|
33 | 33 | <repositories> |
|
43 | 43 | <snapshots> |
44 | 44 | <enabled>false</enabled> |
45 | 45 | </snapshots> |
46 | | - </repository> |
| 46 | + </repository> |
| 47 | + |
| 48 | + <repository> |
| 49 | + <id>payara-milestones</id> |
| 50 | + <name>Payara Milestones</name> |
| 51 | + <url>https://raw.github.com/payara/Payara_PatchedProjects/master</url> |
| 52 | + <releases> |
| 53 | + <enabled>true</enabled> |
| 54 | + </releases> |
| 55 | + <snapshots> |
| 56 | + <enabled>false</enabled> |
| 57 | + </snapshots> |
| 58 | + </repository> |
47 | 59 |
|
48 | 60 | <repository> |
49 | 61 | <id>ossrh</id> |
50 | 62 | <name>Sonatype-snapshot</name> |
51 | | - |
52 | 63 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
53 | | - |
54 | 64 | <releases> |
55 | 65 | <enabled>false</enabled> |
56 | 66 | </releases> |
|
101 | 111 | <module>json-p</module> |
102 | 112 | </modules> |
103 | 113 |
|
104 | | - <dependencyManagement> |
105 | | - <dependencies> |
106 | | - <dependency> |
107 | | - <groupId>org.jboss.arquillian</groupId> |
108 | | - <artifactId>arquillian-bom</artifactId> |
109 | | - <version>1.2.0.Final</version> |
110 | | - <scope>import</scope> |
111 | | - <type>pom</type> |
112 | | - </dependency> |
113 | | - <dependency> |
114 | | - <groupId>org.jboss.arquillian.container</groupId> |
115 | | - <artifactId>arquillian-container-test-api</artifactId> |
116 | | - <version>1.2.0.Final</version> |
117 | | - </dependency> |
118 | | - <dependency> |
119 | | - <groupId>com.h2database</groupId> |
120 | | - <artifactId>h2</artifactId> |
121 | | - <version>1.4.196</version> |
122 | | - </dependency> |
123 | | - </dependencies> |
124 | | - </dependencyManagement> |
| 114 | + <dependencyManagement> |
| 115 | + <dependencies> |
| 116 | + <dependency> |
| 117 | + <groupId>org.jboss.arquillian</groupId> |
| 118 | + <artifactId>arquillian-bom</artifactId> |
| 119 | + <version>1.2.1.Final</version> |
| 120 | + <scope>import</scope> |
| 121 | + <type>pom</type> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>org.jboss.arquillian.container</groupId> |
| 125 | + <artifactId>arquillian-container-test-api</artifactId> |
| 126 | + <version>1.2.1.Final</version> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>com.h2database</groupId> |
| 130 | + <artifactId>h2</artifactId> |
| 131 | + <version>1.4.196</version> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>fish.payara.arquillian</groupId> |
| 135 | + <artifactId>payara-client-ee8</artifactId> |
| 136 | + <version>1.0.Beta3-m1</version> |
| 137 | + <scope>test</scope> |
| 138 | + </dependency> |
| 139 | + </dependencies> |
| 140 | + </dependencyManagement> |
125 | 141 |
|
126 | 142 |
|
127 | 143 | <dependencies> |
|
270 | 286 | </configuration> |
271 | 287 | </plugin> |
272 | 288 | <plugin> |
| 289 | + <groupId>org.apache.maven.plugins</groupId> |
273 | 290 | <artifactId>maven-enforcer-plugin</artifactId> |
| 291 | + <version>3.0.0-M1</version> |
274 | 292 | <configuration> |
275 | 293 | <rules> |
276 | 294 | <requireMavenVersion> |
|
315 | 333 |
|
316 | 334 |
|
317 | 335 |
|
318 | | - <!-- Profiles for the application servers against which the samples are |
319 | | - run --> |
| 336 | + <!-- Profiles for the application servers against which the samples are run --> |
320 | 337 |
|
321 | 338 |
|
322 | 339 | <profiles> |
|
331 | 348 | <activeByDefault>true</activeByDefault> |
332 | 349 | </activation> |
333 | 350 |
|
334 | | - <dependencies> |
335 | | - |
336 | | - <!-- Yasson (JSON-B RI) --> |
337 | | - <dependency> |
338 | | - <groupId>org.eclipse</groupId> |
339 | | - <artifactId>yasson</artifactId> |
340 | | - <version>1.0</version> |
341 | | - <scope>runtime</scope> |
342 | | - </dependency> |
343 | | - |
344 | | - <!-- WebSocket client dependencies --> |
345 | | - <dependency> |
346 | | - <groupId>org.glassfish.tyrus</groupId> |
347 | | - <artifactId>tyrus-client</artifactId> |
348 | | - <version>1.13.1</version> |
349 | | - <scope>test</scope> |
350 | | - </dependency> |
351 | | - <dependency> |
352 | | - <groupId>org.glassfish.tyrus</groupId> |
353 | | - <artifactId>tyrus-container-grizzly-client</artifactId> |
354 | | - <version>1.13.1</version> |
355 | | - <scope>test</scope> |
356 | | - </dependency> |
357 | | - |
358 | | - <!-- The actual Arquillian connector --> |
359 | | - <dependency> |
360 | | - <groupId>org.omnifaces</groupId> |
361 | | - <artifactId>arquillian-payara-server-4-managed</artifactId> |
362 | | - <version>1.0-beta2-SNAPSHOT</version> |
363 | | - <scope>test</scope> |
364 | | - </dependency> |
365 | | - </dependencies> |
| 351 | + <dependencies> |
| 352 | + <dependency> |
| 353 | + <groupId>fish.payara.arquillian</groupId> |
| 354 | + <artifactId>payara-client-ee8</artifactId> |
| 355 | + </dependency> |
| 356 | + |
| 357 | + <!-- The actual Arquillian connector --> |
| 358 | + <dependency> |
| 359 | + <groupId>fish.payara.arquillian</groupId> |
| 360 | + <artifactId>arquillian-payara-server-4-managed</artifactId> |
| 361 | + <version>1.0.Beta3-m1</version> |
| 362 | + <scope>test</scope> |
| 363 | + </dependency> |
| 364 | + </dependencies> |
366 | 365 |
|
367 | 366 | <build> |
368 | 367 | <plugins> |
|
478 | 477 | <id>payara-remote</id> |
479 | 478 |
|
480 | 479 | <dependencies> |
| 480 | + <dependency> |
| 481 | + <groupId>fish.payara.arquillian</groupId> |
| 482 | + <artifactId>payara-client-ee8</artifactId> |
| 483 | + </dependency> |
481 | 484 |
|
482 | 485 | <!-- The actual Arquillian connector --> |
483 | 486 | <dependency> |
484 | 487 | <groupId>fish.payara.arquillian</groupId> |
485 | 488 | <artifactId>arquillian-payara-server-4-remote</artifactId> |
486 | | - <version>1.0.Beta2</version> |
| 489 | + <version>1.0.Beta3-m1</version> |
487 | 490 | <scope>test</scope> |
488 | 491 | </dependency> |
489 | 492 | </dependencies> |
|
0 commit comments