mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-08 19:15:08 +00:00
https://issues.apache.org/jira/browse/ACTIVEMQ6-3 We are renaming packages from activemq6 to activemq as that's more generic and version independent On this first commit I'm just renaming the directories otherwise the history would be lost. The next commit will rename the text on the directories. If I squash these two commits git will make us delete / add again.
83 lines
2.8 KiB
XML
83 lines
2.8 KiB
XML
<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.apache.activemq6.examples.jms</groupId>
|
|
<artifactId>jms-examples</artifactId>
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>activemq6-rar</artifactId>
|
|
<packaging>rar</packaging>
|
|
<name>ActiveMQ6 JMS RA</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-jms-client</artifactId>
|
|
<version>${project.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-core-client</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-jms-client</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.jboss.spec.javax.jms</groupId>
|
|
<artifactId>jboss-jms-api_2.0_spec</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.jboss.spec.javax.transaction</groupId>
|
|
<artifactId>jboss-transaction-api_1.2_spec</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>jboss.jbossts.jts</groupId>
|
|
<artifactId>jbossjts-jacorb</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-ra</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-jms-server</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-core-client</artifactId>
|
|
<version>${project.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.activemq6</groupId>
|
|
<artifactId>activemq6-core-client</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-rar-plugin</artifactId>
|
|
<configuration>
|
|
<raXmlFile>src/main/resources/ra.xml</raXmlFile>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|