2008-04-14 13:32:33 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
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
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-14 13:32:33 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-14 13:32:33 -04:00
|
|
|
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.
|
|
|
|
-->
|
2008-04-11 15:00:05 -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">
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-parent</artifactId>
|
2013-02-06 10:45:26 -05:00
|
|
|
<version>5.9-SNAPSHOT</version>
|
2008-04-11 15:00:05 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-all</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2012-09-20 03:59:08 -04:00
|
|
|
<name>ActiveMQ :: All JAR bundle</name>
|
2008-04-11 15:00:05 -04:00
|
|
|
<description>Puts together an ActiveMQ jar bundle</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- activemq -->
|
2008-06-16 12:11:38 -04:00
|
|
|
<dependency>
|
2010-05-06 09:09:16 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2008-06-16 12:11:38 -04:00
|
|
|
<artifactId>activemq-camel</artifactId>
|
|
|
|
</dependency>
|
2008-04-11 15:00:05 -04:00
|
|
|
<dependency>
|
2010-05-06 09:09:16 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2008-04-11 15:00:05 -04:00
|
|
|
<artifactId>activemq-console</artifactId>
|
|
|
|
</dependency>
|
2013-01-31 11:52:01 -05:00
|
|
|
<!-- Transports -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-stomp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-amqp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-mqtt</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-http</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Stores -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-kahadb-store</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-jdbc-store</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-leveldb-store</artifactId>
|
|
|
|
</dependency>
|
2010-02-09 14:56:21 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
2010-08-06 07:34:06 -04:00
|
|
|
<artifactId>geronimo-annotation_1.0_spec</artifactId>
|
2010-02-09 14:56:21 -05:00
|
|
|
</dependency>
|
2012-02-13 16:14:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</dependency>
|
2008-04-11 15:00:05 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<plugins>
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2011-08-25 14:05:45 -04:00
|
|
|
<version>${maven-shade-plugin-version}</version>
|
2008-04-11 15:00:05 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2012-11-08 13:13:11 -05:00
|
|
|
<include>${project.groupId}:activemq-client</include>
|
|
|
|
<include>${project.groupId}:activemq-openwire-legacy</include>
|
2008-06-16 12:11:38 -04:00
|
|
|
<include>${project.groupId}:activemq-camel</include>
|
2012-11-08 13:13:11 -05:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<include>${project.groupId}:activemq-jaas</include>
|
2012-11-08 13:13:11 -05:00
|
|
|
<include>${project.groupId}:activemq-broker</include>
|
|
|
|
<include>${project.groupId}:activemq-console</include>
|
|
|
|
<include>${project.groupId}:activemq-spring</include>
|
|
|
|
|
2013-05-23 14:33:00 -04:00
|
|
|
<include>${project.groupId}:activemq-amqp</include>
|
2012-11-08 13:13:11 -05:00
|
|
|
<include>${project.groupId}:activemq-http</include>
|
|
|
|
<include>${project.groupId}:activemq-mqtt</include>
|
|
|
|
<include>${project.groupId}:activemq-stomp</include>
|
|
|
|
|
|
|
|
<include>${project.groupId}:activemq-kahadb-store</include>
|
|
|
|
<include>${project.groupId}:activemq-leveldb-store</include>
|
|
|
|
<include>${project.groupId}:activemq-jdbc-store</include>
|
2013-01-08 10:40:13 -05:00
|
|
|
|
|
|
|
<include>org.apache.activemq.protobuf:activemq-protobuf</include>
|
|
|
|
<include>org.fusesource.hawtbuf:hawtbuf</include>
|
|
|
|
<include>org.jasypt:jasypt</include>
|
2008-04-11 15:00:05 -04:00
|
|
|
<include>org.apache.geronimo.specs:geronimo-jms_1.1_spec</include>
|
2008-08-19 08:03:30 -04:00
|
|
|
<include>org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec</include>
|
2010-07-06 05:55:17 -04:00
|
|
|
<include>org.apache.geronimo.specs:geronimo-j2ee-management_1.1_spec</include>
|
2010-02-09 14:56:21 -05:00
|
|
|
<include>org.apache.geronimo.specs:geronimo-annotation_1.0_spec</include>
|
2011-02-10 09:24:01 -05:00
|
|
|
<include>org.slf4j:slf4j-api</include>
|
2012-02-13 13:51:18 -05:00
|
|
|
<include>org.slf4j:slf4j-log4j12</include>
|
2012-02-13 16:14:31 -05:00
|
|
|
<include>log4j:log4j</include>
|
2008-04-11 15:00:05 -04:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
|
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
|
|
|
|
<projectName>Apache ActiveMQ</projectName>
|
|
|
|
</transformer>
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/spring.handlers</resource>
|
|
|
|
</transformer>
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/services/com.sun.tools.xjc.Plugin</resource>
|
|
|
|
</transformer>
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/spring.schemas</resource>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-08-25 14:05:45 -04:00
|
|
|
|
2008-04-11 15:00:05 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2011-11-22 07:51:38 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>deploy</id>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>deploy</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
|
|
|
<configuration>
|
|
|
|
<attach>false</attach>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2013-05-23 14:33:00 -04:00
|
|
|
<profile>
|
|
|
|
<id>apache-release</id>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-openwire-legacy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-camel</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-jaas</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-broker</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-console</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-spring</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-amqp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-http</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-mqtt</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-stomp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-kahadb-store</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-jdbc-store</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-leveldb-store</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq.protobuf</groupId>
|
|
|
|
<artifactId>activemq-protobuf</artifactId>
|
|
|
|
<version>${activemq-protobuf-version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fusesource.hawtbuf</groupId>
|
|
|
|
<artifactId>hawtbuf</artifactId>
|
|
|
|
<version>${hawtbuf-version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jasypt</groupId>
|
|
|
|
<artifactId>jasypt</artifactId>
|
|
|
|
<version>${jasypt-version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<!-- <dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency> -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-annotation_1.0_spec</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>${log4j-version}</version>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipSource>true</skipSource>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>uber-sources-jar</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${basedir}/src/main/descriptors/uber-sources.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<appendAssemblyId>true</appendAssemblyId>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2011-11-22 07:51:38 -05:00
|
|
|
</profiles>
|
|
|
|
|
2010-07-06 05:55:17 -04:00
|
|
|
</project>
|