[Jboss-cvs] JBoss Messaging SVN: r1292 - trunk/tests
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Sep 14 15:25:48 EDT 2006
Author: ruel.loehr at jboss.com
Date: 2006-09-14 15:25:47 -0400 (Thu, 14 Sep 2006)
New Revision: 1292
Added:
trunk/tests/pom.xml
Log:
add pom file
Added: trunk/tests/pom.xml
===================================================================
--- trunk/tests/pom.xml 2006-09-14 19:25:22 UTC (rev 1291)
+++ trunk/tests/pom.xml 2006-09-14 19:25:47 UTC (rev 1292)
@@ -0,0 +1,412 @@
+<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>jboss.messaging.tests</groupId>
+ <artifactId>jboss-messaging-tests</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0</version>
+ <name>JBoss Messaging</name>
+ <url>http://www.jboss.com/products/messaging</url>
+ <description>BJoss Messaging provides an open source and standards-based messaging platform that brings enterprise-class messaging to the mass market.</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+
+ <repositories>
+ <repository>
+ <id>jboss</id>
+ <name>JBoss Inc. Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.com/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jbosspluginrepo</id>
+ <name>jboss plugin repository</name>
+ <url>http://repository.jboss.com/maven2</url>
+ <layout>default</layout>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>
+ <pluginRepository>
+ <id>Maven Snapshots</id>
+ <url>http://snapshots.maven.codehaus.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+
+ <!-- <pluginRepository>
+ <id>central</id>
+ <name>LSU maven2 mirror</name>
+ <url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
+ <layout>default</layout>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>-->
+ </pluginRepositories>
+
+
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <!--<resources>
+ <resource>
+ <directory>src/etc</directory>
+ <includes>
+ <include>aop-messaging-server.xml</include>
+ <include>aop-messaging-client.xml</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>src/etc/server/default/deploy</directory>
+ <includes>
+ <include>messaging-service.xml</include>
+ <include>connection-factories-service.xml</include>
+ <include>destinations-service.xml</include>
+ <include>hsqldb-persistence-service.xml</include>
+ <include>remoting-service.xml</include>
+ <include>jms-ds.xml</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>src/etc/server/default/config</directory>
+ <includes>
+ <include>messaging-users.properties</include>
+ <include>messaging-roles.properties</include>
+ </includes>
+ </resource>
+ <resource>
+ <targetPath>xmdesc</targetPath>
+ <directory>src/etc/xmdesc</directory>
+ <includes>
+ <include>*.xml</include>
+ </includes>
+ </resource>
+ </resources>-->
+
+ <plugins>
+
+
+ <!-- define how we want compilation to take place
+ here, we accept most of the defaults but say that we want the
+ optimization flag set, and define the source and target to be 1.4,
+ these setting will be inherited by child projects -->
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <optimize>true</optimize>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+
+ <!-- define that we wish to create src jars -->
+ <!--<plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin> -->
+
+ <!-- generate java files from grammar -->
+ <!--<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <packageName>org/jboss/jms/selector</packageName>
+ <sourceDirectory>src/main</sourceDirectory>
+ <isStatic>false</isStatic>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <id>javacc</id>
+ </execution>
+ </executions>
+ </plugin> -->
+
+
+
+
+
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.1</version>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <id>aopc</id>
+ <phase>test</phase>
+ <configuration>
+ <tasks>
+ <property refid="maven.compile.classpath" name="cp2"></property>
+ <ant antfile="build.xml" inheritRefs="true"/>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>rmic</id>
+ <phase>process-classes</phase>
+ <configuration>
+ <tasks>
+
+
+ <echo>Running RMIC</echo>
+ <rmic base="${basedir}/target/classes"
+ includes="**/RMITestServer.class,**/RMINamingDelegate.class">
+ <classpath refid="maven.compile.classpath"/>
+ </rmic>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant-junit</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.0</version>
+ <scope>system</scope>
+
+<systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+
+ </plugin>
+
+
+
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-j2ee</artifactId>
+ <version>SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss.jboss-aop</groupId>
+ <artifactId>jboss-aop</artifactId>
+ <version>1.5.0.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>oswego-concurrent</groupId>
+ <artifactId>concurrent</artifactId>
+ <version>1.3.4</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-remoting</artifactId>
+ <version>2.0.0.CR1</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss.common.core</groupId>
+ <artifactId>jboss-common-core</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-serialization</artifactId>
+ <version>1.0.1.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-j2se</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-system</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jgroups</groupId>
+ <artifactId>jgroups</artifactId>
+ <version>2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jbosssx</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-jmx</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-transaction</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss.messaging</groupId>
+ <artifactId>jboss-messaging</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <version>1.8.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss-jca</groupId>
+ <artifactId>jboss-jca</artifactId>
+ <version>snapshot</version>
+ <scope>system</scope>
+ <systemPath>${basedir}/lib/jboss-jca.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>jboss-jca</groupId>
+ <artifactId>jboss-local-jdbc</artifactId>
+ <version>snapshot</version>
+ <scope>system</scope>
+ <systemPath>${basedir}/lib/jboss-local-jdbc.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>jboss-jca</groupId>
+ <artifactId>jboss-common-jdbc</artifactId>
+ <version>snapshot</version>
+ <scope>system</scope>
+ <systemPath>${basedir}/lib/jboss-common-jdbc-wrapper.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>jboss-jca</groupId>
+ <artifactId>jms-ra</artifactId>
+ <version>snapshot</version>
+ <scope>system</scope>
+ <systemPath>${basedir}/lib/jms-ra.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>jboss.profiler.jvmti</groupId>
+ <artifactId>jboss-profiler-jvmti</artifactId>
+ <version>1.0.0.CR5</version>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant-junit</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+
+
+
+
+
+
+
+
+
+ <dependency>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>trove</groupId>
+ <artifactId>trove</artifactId>
+ <version>2.1.1</version>
+ </dependency>
+ <!-- <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-xerces</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>2.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>2.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>oswego-concurrent</groupId>
+ <artifactId>concurrent</artifactId>
+ <version>1.3.4</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-slide</groupId>
+ <artifactId>webdavlib</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.8</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>1.0</version>
+ </dependency>
+-->
+ </dependencies>
+
+</project>
+
More information about the jboss-cvs-commits
mailing list