mirror of https://github.com/apache/activemq.git
112 lines
3.7 KiB
XML
112 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2005-2006 The Apache Software Foundation
|
|
|
|
Licensed 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.
|
|
-->
|
|
<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>
|
|
<groupId>org.apache.activecluster</groupId>
|
|
<artifactId>activecluster</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.3-SNAPSHOT</version>
|
|
<name>ActiveCluster Project</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<ciManagement>
|
|
<system>continuum</system>
|
|
<url>http://ci.gbuild.org/continuum</url>
|
|
<notifiers>
|
|
<notifier>
|
|
<configuration>
|
|
<address>activemq-commits@geronimo.apache.org</address>
|
|
</configuration>
|
|
</notifier>
|
|
</notifiers>
|
|
</ciManagement>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/activemq/trunk/activecluster</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/activemq/trunk/activecluster</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/incubator/activemq/trunk/activecluster/</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>geronimo-spec</groupId>
|
|
<artifactId>geronimo-spec-jta</artifactId>
|
|
<version>1.0.1B-rc4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>geronimo-spec</groupId>
|
|
<artifactId>geronimo-spec-jms</artifactId>
|
|
<version>1.1-rc4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>geronimo-spec</groupId>
|
|
<artifactId>geronimo-spec-j2ee-management</artifactId>
|
|
<version>1.0-rc4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-core</artifactId>
|
|
<version>4.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<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>org.apache.derby</groupId>
|
|
<artifactId>derby</artifactId>
|
|
<version>10.1.1.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<sourceDirectory>src/java</sourceDirectory>
|
|
<testSourceDirectory>src/test</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude implementation="java.lang.String">**/Testing*.java</exclude>
|
|
<exclude implementation="java.lang.String">**/TestSupport.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|