[jboss-cvs] JBossAS SVN: r62285 - projects/test/trunk/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 11 14:57:51 EDT 2007


Author: pgier
Date: 2007-04-11 14:57:51 -0400 (Wed, 11 Apr 2007)
New Revision: 62285

Modified:
   projects/test/trunk/test/pom.xml
Log:
Added deploy plugin config.  Fixed test resource includes and updated dependencies.

Modified: projects/test/trunk/test/pom.xml
===================================================================
--- projects/test/trunk/test/pom.xml	2007-04-11 18:20:58 UTC (rev 62284)
+++ projects/test/trunk/test/pom.xml	2007-04-11 18:57:51 UTC (rev 62285)
@@ -4,25 +4,39 @@
   <parent>
     <groupId>jboss</groupId>
     <artifactId>jboss-parent</artifactId>
-    <version>1</version>
+    <version>2-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-test</artifactId>
   <packaging>jar</packaging>
   <name>JBoss Test</name>
-  <version>1.0.2-SNAPSHOT</version>
+  <version>1.0.4-SNAPSHOT</version>
   <description>JBoss Test</description>
   <build>
     <sourceDirectory>src/main</sourceDirectory>
 	  <testSourceDirectory>src/tests</testSourceDirectory>  
+    <testResources>
+      <testResource>
+        <directory>src/resources/tests</directory>
+      </testResource>
+    </testResources>
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <testFailureIgnore>true</testFailureIgnore>
-        </configuration>
+        <groupId>jboss.maven-plugins</groupId>
+        <artifactId>jboss-deploy-maven-plugin</artifactId>
       </plugin>
+      <plugin>
+        <groupId>jboss.maven-plugins</groupId>
+        <artifactId>jboss-retro-maven-plugin</artifactId>
+        <version>0.5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>retro-compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
   <repositories>
@@ -30,8 +44,17 @@
       <id>jboss</id>
       <name>JBoss Repository</name>
       <layout>default</layout>
-      <url>http://repository.jboss.com/maven2/</url>
+      <url>http://repository.jboss.org/maven2/</url>
       <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Repository</name>
+      <layout>default</layout>
+      <url>http://snapshots.jboss.org/maven2/</url>
+      <snapshots>
         <enabled>true</enabled>
       </snapshots>
     </repository>
@@ -39,28 +62,28 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ant</groupId>
-      <artifactId>ant-junit</artifactId>
+      <artifactId>ant</artifactId>
       <version>1.7.0</version>
     </dependency>
     <dependency>
-      <groupId>apache-xerces</groupId>
-      <artifactId>xml-apis</artifactId>
-      <version>2.7.1</version>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant-junit</artifactId>
+      <version>1.7.0</version>
     </dependency>
     <dependency>
-      <groupId>apache-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <version>2.0.2</version>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-common-logging-spi</artifactId>
+      <version>2.0.4.GA</version>
     </dependency>
     <dependency>
-      <groupId>oswego-concurrent</groupId>
-      <artifactId>concurrent</artifactId>
-      <version>1.3.4</version>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-common-logging-log4j</artifactId>
+      <version>2.0.4.GA</version>
     </dependency>
     <dependency>
       <groupId>jboss</groupId>
-      <artifactId>jboss-logging-spi</artifactId>
-      <version>2.0.2.GA</version>
+      <artifactId>jboss-common-core</artifactId>
+      <version>2.0.4.GA</version>
     </dependency>
     <dependency>
       <groupId>jboss.profiler.jvmti</groupId>
@@ -68,11 +91,6 @@
       <version>1.0.0.CR5</version>
     </dependency>
     <dependency>
-      <groupId>jboss</groupId>
-      <artifactId>jboss-logging-log4j</artifactId>
-      <version>2.0.2.GA</version>
-    </dependency>
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.1</version>




More information about the jboss-cvs-commits mailing list