Commit aa273346 authored by Andy Wilkinson's avatar Andy Wilkinson

Run deployment tests on JDK 9 and 10 where possible

Closes gh-10414
parent e44bfbea
...@@ -343,7 +343,7 @@ ...@@ -343,7 +343,7 @@
<plugin> <plugin>
<groupId>org.codehaus.cargo</groupId> <groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId> <artifactId>cargo-maven2-plugin</artifactId>
<version>1.6.4</version> <version>1.6.7</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.gmavenplus</groupId> <groupId>org.codehaus.gmavenplus</groupId>
......
...@@ -43,12 +43,6 @@ ...@@ -43,12 +43,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
...@@ -93,6 +87,4 @@ ...@@ -93,6 +87,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile>
</profiles>
</project> </project>
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
<description>Spring Boot WildFly Deployment Test</description> <description>Spring Boot WildFly Deployment Test</description>
<properties> <properties>
<main.basedir>${basedir}/../../..</main.basedir> <main.basedir>${basedir}/../../..</main.basedir>
<wildfly.version>9.0.2.Final</wildfly.version> <wildfly.version>12.0.0.Final</wildfly.version>
<cargo.container.id>wildfly9x</cargo.container.id> <cargo.container.id>wildfly12x</cargo.container.id>
<cargo.container.url>http://download.jboss.org/wildfly/${wildfly.version}/wildfly-${wildfly.version}.zip <cargo.container.url>http://download.jboss.org/wildfly/${wildfly.version}/wildfly-${wildfly.version}.zip
</cargo.container.url> </cargo.container.url>
</properties> </properties>
...@@ -43,12 +43,6 @@ ...@@ -43,12 +43,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
...@@ -98,6 +92,4 @@ ...@@ -98,6 +92,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile>
</profiles>
</project> </project>
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
<module name="com.fasterxml.jackson.core.jackson-annotations" /> <module name="com.fasterxml.jackson.core.jackson-annotations" />
<module name="com.fasterxml.jackson.core.jackson-core" /> <module name="com.fasterxml.jackson.core.jackson-core" />
<module name="com.fasterxml.jackson.core.jackson-databind" /> <module name="com.fasterxml.jackson.core.jackson-databind" />
<module name="com.fasterxml.jackson.datatype.jackson-datatype-jdk8"/>
<module name="com.fasterxml.jackson.datatype.jackson-datatype-jsr310"/>
<module name="com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider" /> <module name="com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider" />
<module name="org.jboss.resteasy.resteasy-jackson2-provider" /> <module name="org.jboss.resteasy.resteasy-jackson2-provider" />
<module name="org.slf4j" /> <module name="org.slf4j" />
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<description>Spring Boot WebSphere Liberty Profile Deployment Test</description> <description>Spring Boot WebSphere Liberty Profile Deployment Test</description>
<properties> <properties>
<main.basedir>${basedir}/../../..</main.basedir> <main.basedir>${basedir}/../../..</main.basedir>
<wlp.version>16.0.0.4</wlp.version> <wlp.version>18.0.0.1</wlp.version>
<cargo.container.id>liberty</cargo.container.id> <cargo.container.id>liberty</cargo.container.id>
<cargo.container.url>https://repo.maven.apache.org/maven2/com/ibm/websphere/appserver/runtime/wlp-webProfile7/${wlp.version}/wlp-webProfile7-${wlp.version}.zip</cargo.container.url> <cargo.container.url>https://repo.maven.apache.org/maven2/com/ibm/websphere/appserver/runtime/wlp-webProfile7/${wlp.version}/wlp-webProfile7-${wlp.version}.zip</cargo.container.url>
</properties> </properties>
...@@ -42,12 +42,6 @@ ...@@ -42,12 +42,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
...@@ -90,6 +84,4 @@ ...@@ -90,6 +84,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile>
</profiles>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment