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
Show 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,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>
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,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>
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,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>
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