2014-10-31 06:20:28 -04:00
|
|
|
<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>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.examples</groupId>
|
|
|
|
<artifactId>activemq-examples</artifactId>
|
2014-11-11 07:46:32 -05:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
|
|
|
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.example.javaee</groupId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<artifactId>javaee-examples</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2014-11-11 07:46:32 -05:00
|
|
|
<name>ActiveMQ6 Java EE Examples</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
<!-- Properties -->
|
|
|
|
<properties>
|
|
|
|
<!--
|
|
|
|
Explicitly declaring the source encoding eliminates the following
|
|
|
|
message: [WARNING] Using platform encoding (UTF-8 actually) to copy
|
|
|
|
filtered resources, i.e. build is platform dependent!
|
|
|
|
-->
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
|
|
<jboss.home>${env.JBOSS_HOME}</jboss.home>
|
|
|
|
|
|
|
|
<!-- Note this must be consistent with the version in AS7 -->
|
2014-11-17 07:40:04 -05:00
|
|
|
<hornetq.client.version>6.0.0-SNAPSHOT</hornetq.client.version>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>cluster-examples</id>
|
|
|
|
<modules>
|
|
|
|
<module>mdb-remote-failover-static</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>jca-config</module>
|
|
|
|
<module>mdb-bmt</module>
|
|
|
|
<module>mdb-cmt-setrollbackonly</module>
|
|
|
|
<module>mdb-cmt-setrollbackonly-with-dlq</module>
|
|
|
|
<module>mdb-cmt-tx-local</module>
|
|
|
|
<module>mdb-cmt-tx-not-supported</module>
|
|
|
|
<module>mdb-cmt-tx-required</module>
|
|
|
|
<module>jms-context-injection</module>
|
|
|
|
<module>mdb-message-selector</module>
|
|
|
|
<module>mdb-tx-send</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian</groupId>
|
|
|
|
<artifactId>arquillian-bom</artifactId>
|
|
|
|
<version>1.1.3.Final</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.spec.javax.jms</groupId>
|
|
|
|
<artifactId>jboss-jms-api_2.0_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.spec</groupId>
|
|
|
|
<artifactId>jboss-javaee-6.0</artifactId>
|
|
|
|
<version>1.0.0.Final</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian.junit</groupId>
|
|
|
|
<artifactId>arquillian-junit-container</artifactId>
|
|
|
|
<version>1.1.3.Final</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly</groupId>
|
|
|
|
<artifactId>wildfly-arquillian-container-managed</artifactId>
|
|
|
|
<version>8.0.0.Final</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-core-client</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${hornetq.client.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-jms-client</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${hornetq.client.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-ra</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${hornetq.client.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
<version>${netty.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.ejb3</groupId>
|
|
|
|
<artifactId>jboss-ejb3-ext-api</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian.protocol</groupId>
|
|
|
|
<artifactId>arquillian-protocol-osgi</artifactId>
|
|
|
|
<version>1.0.3.Final</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
A build of target/jbossas which is shared by all modules.
|
|
|
|
Modules and bundles are not copied as they are read-only (see surefire props).
|
|
|
|
-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<!-- Copy the AS into current_submodule/target/wildfly . This is executed recursively in submodules. -->
|
|
|
|
<execution>
|
|
|
|
<id>as-node-0</id>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/target/jbossas-node0</outputDirectory>
|
|
|
|
<overwrite>true</overwrite>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${jboss.home}</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>standalone/data</exclude>
|
|
|
|
<exclude>standalone/log</exclude>
|
|
|
|
<exclude>standalone/tmp</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/server</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.12</version>
|
|
|
|
<configuration>
|
|
|
|
<argLine>-Dlogging.configuration=file:///${user.dir}/test/config/logging.properties</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|