wildfly-camel-example-itests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.camel</groupId> <artifactId>wildfly-camel-example-itests</artifactId> <version>2.3.0.redhat-621222</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L Wildfly Camel Testsuite %% Copyright (C) 2013 - 2014 RedHat %% Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #L% --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.wildfly.camel</groupId> <artifactId>wildfly-camel-example</artifactId> <version>2.3.0.redhat-621222</version> </parent> <name>Wildfly Camel :: Example :: Testsuite</name> <artifactId>wildfly-camel-example-itests</artifactId> <!-- Properties --> <properties> <jboss.home>${project.build.directory}/jboss-eap-6.4</jboss.home> <jvmArgs>-Xmx1G -XX:MaxPermSize=512m -Djava.net.preferIPv4Stack=true</jvmArgs> <jvmDebugArgs>-agentlib:jdwp=transport=dt_socket,address=8787,server=y,suspend=n</jvmDebugArgs> <server.config>standalone-full-camel.xml</server.config> </properties> <!-- Dependencies --> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-xmlsecurity</artifactId> </dependency> <dependency> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-cli</artifactId> <version>${version.wildfly}</version> </dependency> <dependency> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-testsuite-shared</artifactId> <exclusions> <exclusion> <groupId>org.wildfly</groupId> <artifactId>wildfly-build</artifactId> </exclusion> <exclusion> <groupId>org.wildfly</groupId> <artifactId>wildfly-client-all</artifactId> </exclusion> <exclusion> <groupId>org.apache.directory.jdbm</groupId> <artifactId>apacheds-jdbm1</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> </dependency> <dependency> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-arquillian-container-managed</artifactId> </dependency> <dependency> <groupId>org.jboss.spec.javax.ws.rs</groupId> <artifactId>jboss-jaxrs-api_1.1_spec</artifactId> </dependency> <!-- [TODO] Remove explicit xnio override --> <dependency> <groupId>org.jboss.xnio</groupId> <artifactId>xnio-api</artifactId> <version>${version.jboss.xnio}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.xnio</groupId> <artifactId>xnio-nio</artifactId> <version>${version.jboss.xnio}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>wildfly-camel-itests-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.icegreen</groupId> <artifactId>greenmail-webapp</artifactId> <version>${version.greenmail}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-activemq</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-cdi</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-cxf</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-jaxws</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-jms</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-jpa</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-mail</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-rest</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.wildfly.camel</groupId> <artifactId>example-camel-transacted-jms</artifactId> <version>${project.version}</version> <type>war</type> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>arquillian.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>arquillian.xml</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-example-wars</id> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeGroupIds>org.wildfly.camel,com.icegreen</includeGroupIds> <includeTypes>war</includeTypes> <stripVersion>true</stripVersion> <outputDirectory>${project.build.directory}/examples</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-wildfly</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-dist</artifactId> <version>${version.wildfly}</version> <type>zip</type> <outputDirectory>${project.build.directory}</outputDirectory> <overWrite>false</overWrite> </artifactItem> </artifactItems> </configuration> </execution> <execution> <id>unpack-wildfly-patch</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.wildfly.camel</groupId> <artifactId>wildfly-camel-patch</artifactId> <version>${project.version}</version> <type>tar.gz</type> <outputDirectory>${jboss.home}</outputDirectory> <overWrite>false</overWrite> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <environmentVariables> <JBOSS_HOME>${jboss.home}</JBOSS_HOME> </environmentVariables> <systemPropertyVariables> <jboss.home>${jboss.home}</jboss.home> </systemPropertyVariables> <testSourceDirectory>${basedir}/src/main/java/</testSourceDirectory> <testClassesDirectory>${project.build.directory}/classes/</testClassesDirectory> <redirectTestOutputToFile>false</redirectTestOutputToFile> </configuration> </plugin> </plugins> </build> </project>