mirror of
https://github.com/apache/activemq.git
synced 2025-02-06 10:09:28 +00:00
a1ba6e0325
1. Added plugin that will start Broker 2. Updated assembly pom to include the new plugin but still commented out. 3. Updated memtest plugin dependency version config. 4. Updated root pom.xml to use https on scm connection. git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@412955 13f79535-47bb-0310-9956-ffa450edef68
59 lines
2.1 KiB
XML
59 lines
2.1 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>incubator-activemq</groupId>
|
|
<artifactId>activemq-parent</artifactId>
|
|
<version>4.1-SNAPSHOT</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
|
|
<groupId>incubator-activemq</groupId>
|
|
<artifactId>maven-activemq-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>ActiveMQ :: StartUp Plugin</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>incubator-activemq</groupId>
|
|
<artifactId>activemq-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>incubator-activemq</groupId>
|
|
<artifactId>activemq-console</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>incubator-activemq</groupId>
|
|
<artifactId>activeio-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.derby</groupId>
|
|
<artifactId>derby</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.derby</groupId>
|
|
<artifactId>derbynet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>backport-util-concurrent</groupId>
|
|
<artifactId>backport-util-concurrent</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|