You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.5 KiB
115 lines
3.5 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-deployment-tests</artifactId> |
|
<version>1.2.2.BUILD-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>spring-boot-deployment-test-wildfly</artifactId> |
|
<packaging>war</packaging> |
|
<name>Spring Boot WildFly Deployment Test</name> |
|
<description>Spring Boot WildFly Deployment Test</description> |
|
<url>http://projects.spring.io/spring-boot/</url> |
|
<organization> |
|
<name>Pivotal Software, Inc.</name> |
|
<url>http://www.spring.io</url> |
|
</organization> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
<wildfly.version>8.2.0.Final</wildfly.version> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>build-helper-maven-plugin</artifactId> |
|
<executions> |
|
<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> |
|
<container> |
|
<containerId>wildfly8x</containerId> |
|
<zipUrlInstaller> |
|
<url>http://download.jboss.org/wildfly/${wildfly.version}/wildfly-${wildfly.version}.zip</url> |
|
</zipUrlInstaller> |
|
</container> |
|
<configuration> |
|
<properties> |
|
<cargo.servlet.port>${appserver.port}</cargo.servlet.port> |
|
<cargo.jboss.ajp.port>${appserver.ajp.port}</cargo.jboss.ajp.port> |
|
<cargo.jboss.configuration>standalone-full</cargo.jboss.configuration> |
|
</properties> |
|
</configuration> |
|
<deployables> |
|
<deployable> |
|
<properties> |
|
<context>/bootapp</context> |
|
</properties> |
|
<pingURL>http://localhost:${appserver.port}/bootapp</pingURL> |
|
<pingTimeout>30000</pingTimeout> |
|
</deployable> |
|
</deployables> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>start-cargo</id> |
|
<phase>pre-integration-test</phase> |
|
<goals> |
|
<goal>start</goal> |
|
</goals> |
|
</execution> |
|
<execution> |
|
<id>stop-cargo</id> |
|
<phase>post-integration-test</phase> |
|
<goals> |
|
<goal>stop</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</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>
|
|
|