Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 82f56bd

Browse files
committed
Updated Arquillian connector for Payara, fixing classpath bugs
1 parent bc3176d commit 82f56bd

1 file changed

Lines changed: 49 additions & 100 deletions

File tree

pom.xml

Lines changed: 49 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
Application Server versions
2929
(these are downloaded and installed in these versions by Maven for the CI profiles)
3030
-->
31-
<payara.version>4.1.2.173</payara.version>
32-
<payara.micro.version>5.Beta1</payara.micro.version>
31+
<payara.version>4.1.2.174</payara.version>
32+
<payara.micro.version>5.Beta2</payara.micro.version>
3333
<glassfish.version>4.1.1</glassfish.version>
3434
<liberty.version>16.0.0.3</liberty.version>
3535
<wildfly.version>10.1.0.Final</wildfly.version>
@@ -57,6 +57,20 @@
5757
</snapshots>
5858
</repository>
5959

60+
<repository>
61+
<id>payara-milestones</id>
62+
<name>Payara Milestones</name>
63+
64+
<url>https://raw.github.com/payara/Payara_PatchedProjects/master</url>
65+
66+
<releases>
67+
<enabled>true</enabled>
68+
</releases>
69+
<snapshots>
70+
<enabled>false</enabled>
71+
</snapshots>
72+
</repository>
73+
6074
<repository>
6175
<id>ossrh</id>
6276
<name>Sonatype-snapshot</name>
@@ -130,6 +144,12 @@
130144
<artifactId>h2</artifactId>
131145
<version>1.4.195</version>
132146
</dependency>
147+
<dependency>
148+
<groupId>fish.payara.arquillian</groupId>
149+
<artifactId>payara-client-ee7</artifactId>
150+
<version>1.0.Beta3-m1</version>
151+
<scope>test</scope>
152+
</dependency>
133153
</dependencies>
134154
</dependencyManagement>
135155

@@ -341,40 +361,17 @@
341361

342362
<dependencies>
343363

344-
<!-- WebSocket client dependencies -->
345-
<dependency>
346-
<groupId>org.glassfish.tyrus</groupId>
347-
<artifactId>tyrus-client</artifactId>
348-
<version>1.13</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</version>
355-
<scope>test</scope>
356-
</dependency>
357-
358-
359-
<!-- JAX-RS client API dependencies -->
360-
<dependency>
361-
<groupId>org.glassfish.jersey.media</groupId>
362-
<artifactId>jersey-media-json-jackson</artifactId>
363-
<version>2.25.1</version>
364-
<scope>test</scope>
365-
</dependency>
366-
<dependency>
367-
<groupId>org.glassfish.jersey.media</groupId>
368-
<artifactId>jersey-media-json-processing</artifactId>
369-
<version>2.25.1</version>
370-
<scope>test</scope>
371-
</dependency>
364+
<!-- Java EE based client dependencies to contact a server via WebSocket or REST -->
365+
<dependency>
366+
<groupId>fish.payara.arquillian</groupId>
367+
<artifactId>payara-client-ee7</artifactId>
368+
</dependency>
372369

373-
<!-- The actual Arquillian connector -->
370+
<!-- The actual Arquillian connector -->
374371
<dependency>
375372
<groupId>fish.payara.arquillian</groupId>
376373
<artifactId>arquillian-payara-server-4-managed</artifactId>
377-
<version>1.0.Beta2</version>
374+
<version>1.0.Beta3-m1</version>
378375
</dependency>
379376
</dependencies>
380377

@@ -432,11 +429,17 @@
432429
</properties>
433430

434431
<dependencies>
432+
<!-- Java EE based client dependencies to contact a server via WebSocket or REST -->
433+
<dependency>
434+
<groupId>fish.payara.arquillian</groupId>
435+
<artifactId>payara-client-ee7</artifactId>
436+
</dependency>
437+
435438
<!-- The Arquillian connector -->
436439
<dependency>
437440
<groupId>fish.payara.arquillian</groupId>
438-
<artifactId>arquillian-payara-micro-4-managed</artifactId>
439-
<version>1.0.Beta2</version>
441+
<artifactId>arquillian-payara-micro-5-managed</artifactId>
442+
<version>1.0.Beta3-m1</version>
440443
<scope>test</scope>
441444
</dependency>
442445
</dependencies>
@@ -484,36 +487,11 @@
484487
<profile>
485488
<id>payara-embedded</id>
486489
<dependencies>
487-
<dependency>
488-
<groupId>fish.payara.extras</groupId>
489-
<artifactId>payara-embedded-all</artifactId>
490-
<version>${payara.version}</version>
491-
<scope>test</scope>
492-
</dependency>
493-
<dependency>
494-
<groupId>org.glassfish</groupId>
495-
<artifactId>javax.json</artifactId>
496-
<version>1.0.4</version>
497-
<scope>test</scope>
498-
</dependency>
499-
<dependency>
500-
<groupId>org.glassfish.tyrus</groupId>
501-
<artifactId>tyrus-client</artifactId>
502-
<version>1.13</version>
503-
<scope>test</scope>
504-
</dependency>
505-
<dependency>
506-
<groupId>org.glassfish.tyrus</groupId>
507-
<artifactId>tyrus-container-grizzly-client</artifactId>
508-
<version>1.13</version>
509-
<scope>test</scope>
510-
</dependency>
511-
<dependency>
512-
<groupId>org.glassfish.jersey.core</groupId>
513-
<artifactId>jersey-client</artifactId>
514-
<version>2.25</version>
515-
<scope>test</scope>
516-
</dependency>
490+
<!-- Java EE based client dependencies to contact a server via WebSocket or REST -->
491+
<dependency>
492+
<groupId>fish.payara.arquillian</groupId>
493+
<artifactId>payara-client-ee7</artifactId>
494+
</dependency>
517495

518496
<dependency>
519497
<groupId>org.jboss.arquillian.container</groupId>
@@ -540,46 +518,17 @@
540518
<id>payara-remote</id>
541519

542520
<dependencies>
543-
<dependency>
544-
<groupId>org.glassfish</groupId>
545-
<artifactId>javax.json</artifactId>
546-
<version>1.0.4</version>
547-
<scope>test</scope>
548-
</dependency>
549-
550-
<!-- WebSocket client dependencies -->
551-
<dependency>
552-
<groupId>org.glassfish.tyrus</groupId>
553-
<artifactId>tyrus-client</artifactId>
554-
<version>1.13</version>
555-
<scope>test</scope>
556-
</dependency>
557-
<dependency>
558-
<groupId>org.glassfish.tyrus</groupId>
559-
<artifactId>tyrus-container-grizzly-client</artifactId>
560-
<version>1.13</version>
561-
<scope>test</scope>
562-
</dependency>
563-
564-
<!-- JAX-RS client API dependencies -->
565-
<dependency>
566-
<groupId>org.glassfish.jersey.media</groupId>
567-
<artifactId>jersey-media-json-jackson</artifactId>
568-
<version>2.25.1</version>
569-
<scope>test</scope>
570-
</dependency>
571-
<dependency>
572-
<groupId>org.glassfish.jersey.media</groupId>
573-
<artifactId>jersey-media-json-processing</artifactId>
574-
<version>2.25.1</version>
575-
<scope>test</scope>
576-
</dependency>
521+
<!-- Java EE based client dependencies to contact a server via WebSocket or REST -->
522+
<dependency>
523+
<groupId>fish.payara.arquillian</groupId>
524+
<artifactId>payara-client-ee7</artifactId>
525+
</dependency>
577526

578527
<!-- The actual Arquillian connector -->
579528
<dependency>
580-
<groupId>org.omnifaces</groupId>
529+
<groupId>fish.payara.arquillian</groupId>
581530
<artifactId>arquillian-payara-server-4-remote</artifactId>
582-
<version>1.0-beta-SNAPSHOT</version>
531+
<version>1.0.Beta3-m1</version>
583532
<scope>test</scope>
584533
</dependency>
585534
</dependencies>

0 commit comments

Comments
 (0)