Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
aa273346
Commit
aa273346
authored
Apr 04, 2018
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run deployment tests on JDK 9 and 10 where possible
Closes gh-10414
parent
e44bfbea
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
135 additions
and
157 deletions
+135
-157
pom.xml
spring-boot-project/spring-boot-parent/pom.xml
+1
-1
pom.xml
...ployment-tests/spring-boot-deployment-test-tomcat/pom.xml
+42
-50
pom.xml
...loyment-tests/spring-boot-deployment-test-wildfly/pom.xml
+49
-57
jboss-deployment-structure.xml
...ly/src/main/webapp/WEB-INF/jboss-deployment-structure.xml
+2
-0
pom.xml
...-deployment-tests/spring-boot-deployment-test-wlp/pom.xml
+41
-49
No files found.
spring-boot-project/spring-boot-parent/pom.xml
View file @
aa273346
...
@@ -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>
...
...
spring-boot-tests/spring-boot-deployment-tests/spring-boot-deployment-test-tomcat/pom.xml
View file @
aa273346
...
@@ -43,56 +43,48 @@
...
@@ -43,56 +43,48 @@
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
</dependencies>
</dependencies>
<profiles>
<build>
<profile>
<plugins>
<id>
jdk8
</id>
<plugin>
<activation>
<groupId>
org.codehaus.mojo
</groupId>
<jdk>
1.8
</jdk>
<artifactId>
build-helper-maven-plugin
</artifactId>
</activation>
<executions>
<build>
<execution>
<plugins>
<id>
reserve-network-port
</id>
<plugin>
<goals>
<groupId>
org.codehaus.mojo
</groupId>
<goal>
reserve-network-port
</goal>
<artifactId>
build-helper-maven-plugin
</artifactId>
</goals>
<executions>
<phase>
process-resources
</phase>
<execution>
<id>
reserve-network-port
</id>
<goals>
<goal>
reserve-network-port
</goal>
</goals>
<phase>
process-resources
</phase>
<configuration>
<portNames>
<portName>
appserver.port
</portName>
<portName>
appserver.ajp.port
</portName>
</portNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.codehaus.cargo
</groupId>
<artifactId>
cargo-maven2-plugin
</artifactId>
<configuration>
<configuration>
<configuration>
<portNames>
<properties>
<portName>
appserver.port
</portName>
<cargo.servlet.port>
${appserver.port}
</cargo.servlet.port>
<portName>
appserver.ajp.port
</portName>
<cargo.tomcat.ajp.port>
${appserver.ajp.port}
</cargo.tomcat.ajp.port>
</portNames>
</properties>
</configuration>
</configuration>
</configuration>
</plugin>
</execution>
<plugin>
</executions>
<groupId>
org.apache.maven.plugins
</groupId>
</plugin>
<artifactId>
maven-failsafe-plugin
</artifactId>
<plugin>
<configuration>
<groupId>
org.codehaus.cargo
</groupId>
<systemPropertyVariables>
<artifactId>
cargo-maven2-plugin
</artifactId>
<port>
${appserver.port}
</port>
<configuration>
</systemPropertyVariables>
<configuration>
</configuration>
<properties>
</plugin>
<cargo.servlet.port>
${appserver.port}
</cargo.servlet.port>
</plugins>
<cargo.tomcat.ajp.port>
${appserver.ajp.port}
</cargo.tomcat.ajp.port>
</build>
</properties>
</profile>
</configuration>
</profiles>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
<configuration>
<systemPropertyVariables>
<port>
${appserver.port}
</port>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
spring-boot-tests/spring-boot-deployment-tests/spring-boot-deployment-test-wildfly/pom.xml
View file @
aa273346
...
@@ -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>
wildfly
9
x
</cargo.container.id>
<cargo.container.id>
wildfly
12
x
</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,61 +43,53 @@
...
@@ -43,61 +43,53 @@
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
</dependencies>
</dependencies>
<profiles>
<build>
<profile>
<plugins>
<id>
jdk8
</id>
<plugin>
<activation>
<groupId>
org.codehaus.mojo
</groupId>
<jdk>
1.8
</jdk>
<artifactId>
build-helper-maven-plugin
</artifactId>
</activation>
<executions>
<build>
<execution>
<plugins>
<id>
reserve-network-port
</id>
<plugin>
<goals>
<groupId>
org.codehaus.mojo
</groupId>
<goal>
reserve-network-port
</goal>
<artifactId>
build-helper-maven-plugin
</artifactId>
</goals>
<executions>
<phase>
process-resources
</phase>
<execution>
<id>
reserve-network-port
</id>
<goals>
<goal>
reserve-network-port
</goal>
</goals>
<phase>
process-resources
</phase>
<configuration>
<portNames>
<portName>
appserver.port
</portName>
<portName>
appserver.ajp.port
</portName>
<portName>
appserver.transaction.port
</portName>
</portNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.codehaus.cargo
</groupId>
<artifactId>
cargo-maven2-plugin
</artifactId>
<configuration>
<configuration>
<configuration>
<portNames>
<properties>
<portName>
appserver.port
</portName>
<cargo.servlet.port>
${appserver.port}
</cargo.servlet.port>
<portName>
appserver.ajp.port
</portName>
<cargo.jboss.ajp.port>
${appserver.ajp.port}
</cargo.jboss.ajp.port>
<portName>
appserver.transaction.port
</portName>
<cargo.jboss.transaction.statusManager.port>
</portNames>
${appserver.transaction.port}
</cargo.jboss.transaction.statusManager.port>
<cargo.jboss.configuration>
standalone-full
</cargo.jboss.configuration>
</properties>
</configuration>
</configuration>
</configuration>
</plugin>
</execution>
<plugin>
</executions>
<groupId>
org.apache.maven.plugins
</groupId>
</plugin>
<artifactId>
maven-failsafe-plugin
</artifactId>
<plugin>
<configuration>
<groupId>
org.codehaus.cargo
</groupId>
<systemPropertyVariables>
<artifactId>
cargo-maven2-plugin
</artifactId>
<port>
${appserver.port}
</port>
<configuration>
</systemPropertyVariables>
<configuration>
</configuration>
<properties>
</plugin>
<cargo.servlet.port>
${appserver.port}
</cargo.servlet.port>
</plugins>
<cargo.jboss.ajp.port>
${appserver.ajp.port}
</cargo.jboss.ajp.port>
</build>
<cargo.jboss.transaction.statusManager.port>
</profile>
${appserver.transaction.port}
</profiles>
</cargo.jboss.transaction.statusManager.port>
<cargo.jboss.configuration>
standalone-full
</cargo.jboss.configuration>
</properties>
</configuration>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
<configuration>
<systemPropertyVariables>
<port>
${appserver.port}
</port>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
spring-boot-tests/spring-boot-deployment-tests/spring-boot-deployment-test-wildfly/src/main/webapp/WEB-INF/jboss-deployment-structure.xml
View file @
aa273346
...
@@ -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"
/>
...
...
spring-boot-tests/spring-boot-deployment-tests/spring-boot-deployment-test-wlp/pom.xml
View file @
aa273346
...
@@ -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>
1
6.0.0.4
</wlp.version>
<wlp.version>
1
8.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,54 +42,46 @@
...
@@ -42,54 +42,46 @@
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
</dependencies>
</dependencies>
<profiles>
<build>
<profile>
<plugins>
<id>
jdk8
</id>
<plugin>
<activation>
<groupId>
org.codehaus.mojo
</groupId>
<jdk>
1.8
</jdk>
<artifactId>
build-helper-maven-plugin
</artifactId>
</activation>
<executions>
<build>
<execution>
<plugins>
<id>
reserve-network-port
</id>
<plugin>
<goals>
<groupId>
org.codehaus.mojo
</groupId>
<goal>
reserve-network-port
</goal>
<artifactId>
build-helper-maven-plugin
</artifactId>
</goals>
<executions>
<phase>
process-resources
</phase>
<execution>
<id>
reserve-network-port
</id>
<goals>
<goal>
reserve-network-port
</goal>
</goals>
<phase>
process-resources
</phase>
<configuration>
<portNames>
<portName>
appserver.port
</portName>
</portNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.codehaus.cargo
</groupId>
<artifactId>
cargo-maven2-plugin
</artifactId>
<configuration>
<configuration>
<configuration>
<portNames>
<properties>
<portName>
appserver.port
</portName>
<cargo.servlet.port>
${appserver.port}
</cargo.servlet.port>
</portNames>
</properties>
</configuration>
</configuration>
</configuration>
</plugin>
</execution>
<plugin>
</executions>
<groupId>
org.apache.maven.plugins
</groupId>
</plugin>
<artifactId>
maven-failsafe-plugin
</artifactId>
<plugin>
<configuration>
<groupId>
org.codehaus.cargo
</groupId>
<systemPropertyVariables>
<artifactId>
cargo-maven2-plugin
</artifactId>
<port>
${appserver.port}
</port>
<configuration>
</systemPropertyVariables>
<configuration>
</configuration>
<properties>
</plugin>
<cargo.servlet.port>
${appserver.port}
</cargo.servlet.port>
</plugins>
</properties>
</build>
</configuration>
</profile>
</configuration>
</profiles>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
<configuration>
<systemPropertyVariables>
<port>
${appserver.port}
</port>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment