2013-01-03 13:37:45 -05: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
|
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2013-01-28 17:44:25 -05: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">
|
2013-01-03 13:37:45 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-parent</artifactId>
|
|
|
|
<version>5.8-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-osgi</artifactId>
|
|
|
|
<packaging>bundle</packaging>
|
|
|
|
<name>ActiveMQ :: OSGi bundle</name>
|
|
|
|
<description>Puts together an ActiveMQ OSGi bundle</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<activemq.osgi.import.pkg>
|
|
|
|
|
|
|
|
</activemq.osgi.import.pkg>
|
|
|
|
<activemq.osgi.export>
|
2013-01-27 09:03:41 -05:00
|
|
|
org.apache.activemq*;version=${project.version};-noimport:=true;-split-package:=merge-first,
|
|
|
|
org.iq80*;-noimport:=true;-split-package:=merge-first,
|
|
|
|
org.fusesource*;-noimport:=true;-split-package:=merge-first
|
2013-01-03 13:37:45 -05:00
|
|
|
</activemq.osgi.export>
|
|
|
|
<activemq.osgi.dynamic.import>*</activemq.osgi.dynamic.import>
|
|
|
|
<surefire.argLine>-Xmx512M</surefire.argLine>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- The core broker dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-broker</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Additional message store impls -->
|
|
|
|
<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>
|
2013-01-27 09:03:41 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>uber</classifier>
|
2013-01-03 13:37:45 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-amq-store</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Additional protocol impls -->
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-xmpp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Additional Dependencies. -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-camel</artifactId>
|
|
|
|
</dependency>
|
2013-01-18 05:12:11 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-jaas</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-ra</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2013-01-28 17:44:25 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-spring</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-01-22 05:39:23 -05:00
|
|
|
|
2013-01-28 17:44:25 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.compendium</artifactId>
|
|
|
|
<version>4.2.0</version>
|
|
|
|
</dependency>
|
2013-01-22 05:39:23 -05:00
|
|
|
|
2013-01-03 13:37:45 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2013-01-23 07:37:13 -05:00
|
|
|
<!-- Copy all necessary resources from other modules, like spring schema mapping, xbean resources, etc. -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-xbean</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/target/classes/</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/../activemq-spring/target/classes/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>activemq.xsd*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-spring</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/target/classes/META-INF</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/../activemq-spring/target/classes/META-INF</directory>
|
|
|
|
<includes>
|
|
|
|
<include>spring.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2013-01-18 05:12:11 -05:00
|
|
|
|
2013-01-03 13:37:45 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2013-01-28 17:44:25 -05:00
|
|
|
<Bundle-Activator>org.apache.activemq.util.osgi.Activator</Bundle-Activator>
|
|
|
|
<Embed-Dependency>*;groupId=org.apache.activemq;inline=META-INF/services/*</Embed-Dependency>
|
|
|
|
<Embed-Transitive>true</Embed-Transitive>
|
2013-01-03 13:37:45 -05:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|