|
35 | 35 | <payara.version>5.182-SNAPSHOT</payara.version>
|
36 | 36 | <payara.micro.version>5.182-SNAPSHOT</payara.micro.version>
|
37 | 37 | <liberty.version>17.0.0.4</liberty.version>
|
38 |
| - <wildfly.version>2018.4.1</wildfly.version> |
| 38 | + <thorntail.version>2.3.0.Final</thorntail.version> |
39 | 39 |
|
40 | 40 | <payara.container.version>1.0.Beta3</payara.container.version>
|
41 | 41 | <payara.micro.container.version>5.Beta3-m3</payara.micro.container.version>
|
|
627 | 627 |
|
628 | 628 |
|
629 | 629 |
|
630 |
| - <!-- ### WildFly ### --> |
| 630 | + <!-- ### Thorntail ### --> |
631 | 631 |
|
632 | 632 | <profile>
|
633 |
| - <id>wildfly-ci-managed</id> |
| 633 | + <id>thorntail</id> |
634 | 634 |
|
635 |
| - <!-- WildFly is very sensitive for the exact Arquillian version used. |
636 |
| - If the version is not right, the Swarm connector will create 2 deployments |
637 |
| - per test, which fails. --> |
638 | 635 | <dependencyManagement>
|
639 | 636 | <dependencies>
|
640 | 637 | <dependency>
|
641 |
| - <groupId>org.jboss.arquillian</groupId> |
642 |
| - <artifactId>arquillian-bom</artifactId> |
643 |
| - <version>1.2.1.Final</version> |
| 638 | + <groupId>io.thorntail</groupId> |
| 639 | + <artifactId>bom</artifactId> |
| 640 | + <version>${thorntail.version}</version> |
644 | 641 | <scope>import</scope>
|
645 | 642 | <type>pom</type>
|
646 | 643 | </dependency>
|
647 |
| - <dependency> |
648 |
| - <groupId>org.jboss.arquillian.container</groupId> |
649 |
| - <artifactId>arquillian-container-test-api</artifactId> |
650 |
| - <version>1.2.1.Final</version> |
651 |
| - </dependency> |
652 | 644 | </dependencies>
|
653 | 645 | </dependencyManagement>
|
654 | 646 |
|
655 | 647 | <dependencies>
|
656 |
| - <!-- Needed for websocket tests that use ContainerProvider.getWebSocketContainer() |
657 |
| - to connect from a the client to the websocket server. --> |
658 |
| - <dependency> |
659 |
| - <groupId>io.undertow</groupId> |
660 |
| - <artifactId>undertow-websockets-jsr</artifactId> |
661 |
| - <version>2.0.4.Final</version> |
662 |
| - <scope>test</scope> |
663 |
| - </dependency> |
664 |
| - |
665 |
| - <!-- Needed for jaxrs tests that use ClientBuilder to connect from a |
666 |
| - client to the JAX-RS server. --> |
667 |
| - <dependency> |
668 |
| - <groupId>org.jboss.resteasy</groupId> |
669 |
| - <artifactId>resteasy-client</artifactId> |
670 |
| - <version>3.0.19.Final</version> |
671 |
| - <scope>test</scope> |
672 |
| - </dependency> |
673 |
| - |
674 |
| - <!-- Without this exception will be thrown about missing tracef method --> |
675 |
| - <dependency> |
676 |
| - <groupId>org.jboss.logging</groupId> |
677 |
| - <artifactId>jboss-logging</artifactId> |
678 |
| - <version>3.3.2.Final</version> |
679 |
| - <scope>test</scope> |
680 |
| - </dependency> |
681 |
| - <dependency> |
682 |
| - <groupId>org.jboss.resteasy</groupId> |
683 |
| - <artifactId>resteasy-jaxb-provider</artifactId> |
684 |
| - <version>3.0.19.Final</version> |
685 |
| - <scope>test</scope> |
686 |
| - </dependency> |
687 |
| - <dependency> |
688 |
| - <groupId>org.jboss.resteasy</groupId> |
689 |
| - <artifactId>resteasy-json-p-provider</artifactId> |
690 |
| - <version>3.0.19.Final</version> |
691 |
| - <scope>test</scope> |
692 |
| - </dependency> |
693 | 648 |
|
694 | 649 | <!-- The actual Arquillian container, which also takes care of downloading
|
695 | 650 | the server bits -->
|
696 | 651 | <dependency>
|
697 |
| - <groupId>org.wildfly.swarm</groupId> |
| 652 | + <groupId>io.thorntail</groupId> |
698 | 653 | <artifactId>arquillian</artifactId>
|
699 |
| - <version>${wildfly.version}</version> |
700 | 654 | <scope>test</scope>
|
701 | 655 | </dependency>
|
702 |
| - |
703 | 656 | <dependency>
|
704 |
| - <groupId>org.wildfly.swarm</groupId> |
| 657 | + <groupId>io.thorntail</groupId> |
705 | 658 | <artifactId>microprofile</artifactId>
|
706 |
| - <version>${wildfly.version}</version> |
707 | 659 | </dependency>
|
708 | 660 | </dependencies>
|
| 661 | + |
709 | 662 | <build>
|
710 | 663 | <plugins>
|
711 | 664 | <plugin>
|
712 | 665 | <artifactId>maven-surefire-plugin</artifactId>
|
713 | 666 | <configuration>
|
714 | 667 | <systemPropertyVariables>
|
715 | 668 | <!-- Uncomment to debug -->
|
716 |
| - <!-- <swarm.debug.port>5005</swarm.debug.port> --> |
717 |
| - <arquillian.xml>arquillian-swarm.xml</arquillian.xml> |
| 669 | + <!--<thorntail.debug.port>8000</thorntail.debug.port>--> |
| 670 | + <arquillian.xml>arquillian-thorntail.xml</arquillian.xml> |
718 | 671 | </systemPropertyVariables>
|
719 | 672 | </configuration>
|
720 | 673 | </plugin>
|
721 | 674 | </plugins>
|
722 | 675 | </build>
|
723 | 676 | </profile>
|
724 | 677 |
|
725 |
| - |
726 |
| - |
727 | 678 | <profile>
|
728 | 679 | <id>nothing</id>
|
729 | 680 | </profile>
|
|
0 commit comments