[jboss-cvs] JBossAS SVN: r67107 - projects/cluster/trunk/ha-client.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 14 18:52:40 EST 2007


Author: bstansberry at jboss.com
Date: 2007-11-14 18:52:39 -0500 (Wed, 14 Nov 2007)
New Revision: 67107

Modified:
   projects/cluster/trunk/ha-client/pom.xml
Log:
Conform to latest pom standards

Modified: projects/cluster/trunk/ha-client/pom.xml
===================================================================
--- projects/cluster/trunk/ha-client/pom.xml	2007-11-14 23:52:22 UTC (rev 67106)
+++ projects/cluster/trunk/ha-client/pom.xml	2007-11-14 23:52:39 UTC (rev 67107)
@@ -1,10 +1,10 @@
 <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.cluster</groupId>
+  <groupId>org.jboss.cluster</groupId>
   <artifactId>jboss-ha-client</artifactId>
   <packaging>jar</packaging>
-  <version>0.1.SNAPSHOT</version>
+  <version>1.0.0-SNAPSHOT</version>
   <name>JBoss Cluster HA Client Classes</name>
   <url>http://www.jboss.org</url>
   <description>A set of client-side classes commonly used in a cluster</description>
@@ -18,89 +18,47 @@
     <name>JBoss, a division of Red Hat, 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>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>
-
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent> 
   
   <build>
-    <sourceDirectory>src/main/java</sourceDirectory>
-    
     <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>     
-    
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <printSummary>true</printSummary>
+          <disableXmlReport>false</disableXmlReport>
+          <testFailureIgnore>true</testFailureIgnore>
+          <includes>
+            <include>**/*TestCase.java</include>
+          </includes>
+        </configuration>
+      </plugin>      
     </plugins>
-  </build>
-  <dependencies>
+  </build>  
+  
+  <dependencies> 
+    <!-- Global dependencies -->
     <dependency>
+       <groupId>org.jboss.aop</groupId>
+       <artifactId>jboss-aop</artifactId>
+       <version>2.0.0.beta1</version>
+    </dependency>
+    <dependency>
+       <groupId>org.jboss</groupId>
+       <artifactId>jboss-common-core</artifactId>
+       <version>2.2.2.GA</version>
+    </dependency>
+    <!-- Test dependencies -->
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>jboss.jboss-aop</groupId>
-      <artifactId>jboss-aop</artifactId>
-      <version>1.5.0.GA</version>
-    </dependency> 
   </dependencies>  
 
 </project>




More information about the jboss-cvs-commits mailing list