2015-01-05 07:45:36 -05:00
|
|
|
<?xml version='1.0'?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you 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.
|
|
|
|
-->
|
|
|
|
|
2015-03-09 13:55:56 -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">
|
2014-10-31 06:20:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.examples.jms</groupId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<artifactId>jms-examples</artifactId>
|
2015-05-21 08:47:45 -04:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-jms-xa-send-example</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<packaging>jar</packaging>
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>ActiveMQ Artemis JMS XA Send Example</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
2015-05-05 17:35:09 -04:00
|
|
|
<properties>
|
|
|
|
<activemq.basedir>${project.basedir}/../../..</activemq.basedir>
|
|
|
|
</properties>
|
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-07-06 15:42:36 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-commons</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-01-07 09:16:13 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_2.0_spec</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2015-03-07 11:51:01 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>example</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-maven-plugin</artifactId>
|
2015-03-07 11:51:01 -05:00
|
|
|
<executions>
|
2015-07-06 15:42:36 -04:00
|
|
|
<execution>
|
|
|
|
<id>create</id>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2015-03-07 11:51:01 -05:00
|
|
|
<execution>
|
|
|
|
<id>start</id>
|
|
|
|
<goals>
|
2015-07-06 15:42:36 -04:00
|
|
|
<goal>cli</goal>
|
2015-03-07 11:51:01 -05:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2015-07-06 15:42:36 -04:00
|
|
|
<spawn>true</spawn>
|
|
|
|
<testURI>tcp://localhost:61616</testURI>
|
|
|
|
<args>
|
|
|
|
<param>run</param>
|
|
|
|
</args>
|
2015-03-07 11:51:01 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>runClient</id>
|
|
|
|
<goals>
|
|
|
|
<goal>runClient</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2015-04-30 05:44:16 -04:00
|
|
|
<clientClass>org.apache.activemq.artemis.jms.example.XASendExample</clientClass>
|
2015-03-07 11:51:01 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>stop</id>
|
|
|
|
<goals>
|
2015-07-06 15:42:36 -04:00
|
|
|
<goal>cli</goal>
|
2015-03-07 11:51:01 -05:00
|
|
|
</goals>
|
2015-07-06 15:42:36 -04:00
|
|
|
<configuration>
|
|
|
|
<args>
|
|
|
|
<param>stop</param>
|
|
|
|
</args>
|
|
|
|
</configuration>
|
2015-03-07 11:51:01 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq.examples.jms</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-jms-xa-send-example</artifactId>
|
2015-03-07 11:51:01 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-01-05 07:45:36 -05:00
|
|
|
</project>
|