2005-12-12 12:53:59 -05:00
|
|
|
<model>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-12-20 09:47:39 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2005-12-21 16:43:55 -05:00
|
|
|
<artifactId>activemq-project</artifactId>
|
|
|
|
<version>4.0-SNAPSHOT</version>
|
2005-12-20 09:47:39 -05:00
|
|
|
<packaging>pom</packaging>
|
2005-12-12 12:53:59 -05:00
|
|
|
<name>ActiveMQ JMS Broker Project</name>
|
|
|
|
|
2005-12-20 09:47:39 -05:00
|
|
|
<mailingLists>
|
|
|
|
<mailingList>
|
|
|
|
<name>Development List</name>
|
|
|
|
<subscribe>activemq-dev@geronimo.apache.org</subscribe>
|
|
|
|
<unsubscribe>activemq-dev@geronimo.apache.org</unsubscribe>
|
|
|
|
<post>activemq-dev@geronimo.apache.org</post>
|
|
|
|
</mailingList>
|
|
|
|
</mailingLists>
|
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
2005-12-20 09:47:39 -05:00
|
|
|
<enabled>true</enabled>
|
2005-12-12 12:53:59 -05:00
|
|
|
</snapshots>
|
|
|
|
<id>codehaus</id>
|
|
|
|
<name>Codehaus Repository</name>
|
|
|
|
<url>http://dist.codehaus.org</url>
|
|
|
|
<layout>legacy</layout>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>codehaus</id>
|
|
|
|
<name>Ibiblio Repository</name>
|
|
|
|
<url>http://www.ibiblio.org/maven</url>
|
|
|
|
<layout>legacy</layout>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>apache</id>
|
|
|
|
<name>Apche Repository</name>
|
|
|
|
<url>http://cvs.apache.org/repository</url>
|
|
|
|
<layout>legacy</layout>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>central</id>
|
|
|
|
<name>Maven Repository Switchboard</name>
|
|
|
|
<url>http://repo1.maven.org/maven2</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>snapshots</id>
|
|
|
|
<name>Maven Central Plugins Development Repository</name>
|
|
|
|
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2005-12-21 21:47:39 -05:00
|
|
|
<configuration>
|
|
|
|
<source>1.4</source>
|
|
|
|
<target>1.4</target>
|
|
|
|
</configuration>
|
2005-12-12 12:53:59 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
2005-12-21 21:47:39 -05:00
|
|
|
<configuration>
|
|
|
|
<outputDirectory>bin</outputDirectory>
|
|
|
|
</configuration>
|
2005-12-12 12:53:59 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2005-12-21 21:47:39 -05:00
|
|
|
<version>2.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<!-- <forkMode>pertest</forkMode> -->
|
|
|
|
<forkMode>none</forkMode>
|
|
|
|
</configuration>
|
2005-12-12 12:53:59 -05:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>activemq-core</module>
|
|
|
|
<module>activemq-ra</module>
|
|
|
|
<module>activemq-jaas</module>
|
2005-12-20 09:47:39 -05:00
|
|
|
<module>activeio</module>
|
|
|
|
<module>activecluster</module>
|
2005-12-12 12:53:59 -05:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0-beta-1/</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0-beta-1/</developerConnection>
|
|
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven/components/tags/maven-2.0-beta-1/</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>LogicBlaze Inc.</name>
|
|
|
|
<url>http://www.logicblaze.com/</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- Required dependencies -->
|
|
|
|
<!-- =============================== -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>activeio</groupId>
|
|
|
|
<artifactId>activeio</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>backport-util-concurrent</groupId>
|
|
|
|
<artifactId>backport-util-concurrent</artifactId>
|
|
|
|
<version>2.0_01_pd</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>geronimo-spec</groupId>
|
|
|
|
<artifactId>geronimo-spec-jms</artifactId>
|
|
|
|
<version>1.1-rc4</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>geronimo-spec</groupId>
|
|
|
|
<artifactId>geronimo-spec-jta</artifactId>
|
|
|
|
<version>1.0.1B-rc4</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>geronimo-spec</groupId>
|
|
|
|
<artifactId>geronimo-spec-j2ee-management</artifactId>
|
|
|
|
<version>1.0-rc4</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>geronimo-spec</groupId>
|
|
|
|
<artifactId>geronimo-spec-j2ee-jacc</artifactId>
|
|
|
|
<version>1.0-rc4</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>geronimo-spec</groupId>
|
|
|
|
<artifactId>geronimo-spec-j2ee-connector</artifactId>
|
|
|
|
<version>1.5-rc4</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- Optional dependencies -->
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- for custom XML parsing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>xbean</groupId>
|
|
|
|
<artifactId>xbean-spring</artifactId>
|
2005-12-20 09:47:39 -05:00
|
|
|
<version>2.0</version>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Used to configure the activemq logs -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.8</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- used to support optional transport configuration via URI query strings -->
|
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
<version>1.6.1</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Optional Spring Support -->
|
|
|
|
<dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
<groupId>org.springframework</groupId>
|
2005-12-12 12:53:59 -05:00
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
<version>1.2.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- an optional discovery agent -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>activecluster</groupId>
|
|
|
|
<artifactId>activecluster</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Optional Derby support-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<version>10.1.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Optional Axion support -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>axion</groupId>
|
|
|
|
<artifactId>axion</artifactId>
|
|
|
|
<version>1.0-M3-dev</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-primitives</groupId>
|
|
|
|
<artifactId>commons-primitives</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>regexp</groupId>
|
|
|
|
<artifactId>regexp</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Optional HSQL DB Support -->
|
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.7.2.2}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-dbcp</groupId>
|
|
|
|
<artifactId>commons-dbcp</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Optional Journal Implementation -->
|
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>howl</groupId>
|
|
|
|
<artifactId>howl-logger</artifactId>
|
|
|
|
<version>0.1.7</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- Optional Jabber support -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>activemq</groupId>
|
|
|
|
<artifactId>smack</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>activemq</groupId>
|
|
|
|
<artifactId>smackx</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- XML processing dependencies -->
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- For XMLBeans -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlbeans</groupId>
|
|
|
|
<artifactId>xbean</artifactId>
|
|
|
|
<version>2.0.0-beta1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlbeans</groupId>
|
|
|
|
<artifactId>xmlpublic</artifactId>
|
|
|
|
<version>2.0.0-beta1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlbeans</groupId>
|
|
|
|
<artifactId>xbean_xpath</artifactId>
|
|
|
|
<version>2.0.0-beta1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- For Stax -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
<artifactId>stax</artifactId>
|
|
|
|
<version>1.1.1-dev</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- To use XPath using JAXP 1.3 (std in Java 5) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>activesoap</groupId>
|
|
|
|
<artifactId>jaxp-api</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- To use XPath using JAXP 1.2 (easier to add to Java 1.4.x) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>xalan</groupId>
|
|
|
|
<artifactId>xalan</artifactId>
|
|
|
|
<version>2.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>activemq</groupId>
|
|
|
|
<artifactId>jmdns</artifactId>
|
|
|
|
<version>1.0-RC2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mx4j</groupId>
|
|
|
|
<artifactId>mx4j</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mx4j</groupId>
|
|
|
|
<artifactId>mx4j-jmx</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mx4j</groupId>
|
|
|
|
<artifactId>mx4j-remote</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mx4j</groupId>
|
|
|
|
<artifactId>mx4j-tools</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mx4j</groupId>
|
|
|
|
<artifactId>mx4j-impl</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2005-12-20 09:47:39 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2005-12-12 12:53:59 -05:00
|
|
|
<artifactId>activemq-jaas</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- Testing dependencies -->
|
|
|
|
<!-- =============================== -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jmock</groupId>
|
|
|
|
<artifactId>jmock</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jmock</groupId>
|
|
|
|
<artifactId>jmock-cglib</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib-full</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</model>
|