Skip to content

Commit d5ba540

Browse files
committed
Skipping JAX-WS tests for Micro and updating versions
1 parent 70364e5 commit d5ba540

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

jaxws/pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion>
43

54
<parent>
65
<groupId>org.javaee7</groupId>
76
<artifactId>samples-parent</artifactId>
87
<version>1.0-SNAPSHOT</version>
9-
<relativePath>../pom.xml</relativePath>
108
</parent>
9+
1110
<groupId>org.javaee7</groupId>
1211
<artifactId>jaxws</artifactId>
1312
<packaging>pom</packaging>
@@ -17,12 +16,23 @@
1716
<module>jaxws-endpoint</module>
1817
<module>jaxws-client</module>
1918
</modules>
20-
19+
2120
<dependencies>
2221
<dependency>
2322
<groupId>org.javaee7</groupId>
2423
<artifactId>test-utils</artifactId>
2524
<version>${project.version}</version>
2625
</dependency>
2726
</dependencies>
27+
28+
<build>
29+
<plugins>
30+
<plugin>
31+
<artifactId>maven-surefire-plugin</artifactId>
32+
<configuration>
33+
<skipTests>${skipJAXWS}</skipTests>
34+
</configuration>
35+
</plugin>
36+
</plugins>
37+
</build>
2838
</project>

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
<skipJSF>${skipTests}</skipJSF>
2424
<skipJACC>${skipTests}</skipJACC>
2525
<skipJMS>${skipTests}</skipJMS>
26+
<skipJAXWS>${skipTests}</skipJAXWS>
2627

2728
<!--
2829
Application Server versions
2930
(these are downloaded and installed in these versions by Maven for the CI profiles)
3031
-->
3132
<payara.version>4.1.2.181</payara.version>
32-
<payara.micro.version>5.Beta2</payara.micro.version>
33+
<payara.micro.version>5.181-SNAPSHOT</payara.micro.version>
3334
<glassfish.version>4.1.1</glassfish.version>
3435
<liberty.version>16.0.0.4</liberty.version>
3536
<wildfly.version>11.0.0.Final</wildfly.version>
@@ -439,7 +440,7 @@
439440
<dependency>
440441
<groupId>fish.payara.arquillian</groupId>
441442
<artifactId>arquillian-payara-micro-5-managed</artifactId>
442-
<version>1.0.Beta3-m1</version>
443+
<version>1.0.Beta3-m2</version>
443444
<scope>test</scope>
444445
</dependency>
445446
</dependencies>

0 commit comments

Comments
 (0)