[hornetq-commits] JBoss hornetq SVN: r9394 - branches/maven-move/tests/jms-tests.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Jul 9 16:29:19 EDT 2010


Author: bill.burke at jboss.com
Date: 2010-07-09 16:29:19 -0400 (Fri, 09 Jul 2010)
New Revision: 9394

Added:
   branches/maven-move/tests/jms-tests/pom.xml
Log:


Added: branches/maven-move/tests/jms-tests/pom.xml
===================================================================
--- branches/maven-move/tests/jms-tests/pom.xml	                        (rev 0)
+++ branches/maven-move/tests/jms-tests/pom.xml	2010-07-09 20:29:19 UTC (rev 9394)
@@ -0,0 +1,119 @@
+<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>org.hornetq</groupId>
+        <artifactId>hornetq-pom</artifactId>
+        <version>2.1.2-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.hornetq.tests</groupId>
+    <artifactId>jms-tests</artifactId>
+    <packaging>jar</packaging>
+    <name>HornetQ JMS Tests</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.hornetq</groupId>
+            <artifactId>hornetq-jms</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.hornetq</groupId>
+            <artifactId>hornetq-ra</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.hornetq</groupId>
+            <artifactId>hornetq-bootstrap</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.javaee</groupId>
+            <artifactId>jboss-jca-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.security</groupId>
+            <artifactId>jboss-security-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.security</groupId>
+            <artifactId>jbosssx</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.naming</groupId>
+            <artifactId>jnpserver</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jboss.jbossts</groupId>
+            <artifactId>jbossts-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>apache-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.javaee</groupId>
+            <artifactId>jboss-transaction-api</artifactId>
+        </dependency>
+        <!--this specifically for the JMS Bridge-->
+        <dependency>
+            <groupId>org.jboss.integration</groupId>
+            <artifactId>jboss-transaction-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.javaee</groupId>
+            <artifactId>jboss-jaspi-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.javaee</groupId>
+            <artifactId>jboss-jms-api</artifactId>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <testResources>
+            <testResource>
+                <directory>config</directory>
+            </testResource>
+        </testResources>
+        <plugins>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-surefire-plugin</artifactId>
+              <configuration>
+                  <includes>
+                      <include>**/*Test.java</include>
+                  </includes>
+                <excludes>
+                    <exclude>org/hornetq/jms/tests/JMSTestCase.java</exclude>
+                    <exclude>org/hornetq/jms/tests/HornetqServerTestCase.java</exclude>
+                    <exclude>org/hornetq/jms/tests/stress/*.java</exclude>
+                    <exclude>org/hornetq/jms/tests/XARecoveryTest.java</exclude>
+                    <exclude>org/hornetq/jms/tests/XAResourceRecoveryTest.java</exclude>
+                    <exclude>org/hornetq/jms/tests/XATest.java</exclude>
+                    <exclude>org/hornetq/jms/tests/stress/*.java</exclude>
+                    <exclude>org/hoerntq/jms/tests/manual/**</exclude>
+                </excludes>
+              </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>



More information about the hornetq-commits mailing list