resteasy-integration-tests-spring-web-deployment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jboss.resteasy.spring</groupId>
<artifactId>resteasy-integration-tests-spring-web-deployment</artifactId>
<version>3.2.0.Final</version>
</dependency><?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.resteasy.spring</groupId>
<artifactId>resteasy-integration-tests-spring-web</artifactId>
<version>3.2.0.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>resteasy-integration-tests-spring-web-deployment</artifactId>
<name>RESTEasy Main testsuite: Spring Web integration tests - Deployment</name>
<profiles>
<!--
Name: download
Descr: Download WildFly
-->
<profile>
<id>download</id>
<activation>
<property>
<name>!server.home</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<executions>
<execution>
<id>server-provisioning</id>
<phase>generate-test-resources</phase>
<goals>
<goal>provision</goal>
</goals>
<configuration>
<layers>
<layer>jaxrs</layer>
<layer>resteasy-spring</layer>
</layers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<includes>
<include>arquillian.xml</include>
</includes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<excludes>
<exclude>arquillian.xml</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<parameters>true</parameters>
</configuration>
</plugin>
</plugins>
</build>
</project>