2006-02-21 18:28:33 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://maven.apache.org/xsd/maven-project-3.0.0.xsd">
|
|
|
|
<pomVersion>3</pomVersion>
|
|
|
|
<id>panacya-mdb-test</id>
|
|
|
|
<name>Message Driven Bean Test</name>
|
|
|
|
<groupId>panacya-cicada</groupId>
|
|
|
|
<currentVersion>1.0</currentVersion>
|
|
|
|
<package>com.panacya.platform.service.bus</package>
|
|
|
|
<description/>
|
|
|
|
<shortDescription/>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Michael Gaffney</name>
|
|
|
|
<id>mgaffney</id>
|
|
|
|
<email>mike@gaffney.cc</email>
|
|
|
|
<organization>Panacya Inc.</organization>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>activemq</groupId>
|
|
|
|
<artifactId>activemq</artifactId>
|
|
|
|
<version>3.1-SNAPSHOT</version>
|
|
|
|
<url>http://activemq.codehaus.org/</url>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2006-03-22 10:27:50 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee_1.4_spec</artifactId>
|
|
|
|
<version>1.0</version>
|
2006-02-21 18:28:33 -05:00
|
|
|
<url>http://geronimo.apache.org/</url>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>concurrent</groupId>
|
|
|
|
<artifactId>concurrent</artifactId>
|
|
|
|
<version>1.3.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
<url>http://jakarta.apache.org/commons/logging/</url>
|
|
|
|
<properties>
|
|
|
|
<ejb.bundle>true</ejb.bundle>
|
|
|
|
<ejb.manifest.classpath>true</ejb.manifest.classpath>
|
|
|
|
</properties>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>springframework</groupId>
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.8</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
|
|
|
|
<unitTest>
|
|
|
|
<includes>
|
|
|
|
<include>**/*Test.java</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/Abstract*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/test/conf</directory>
|
|
|
|
<includes>
|
|
|
|
<include>log4j.properties</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</unitTest>
|
|
|
|
</build>
|
|
|
|
</project>
|