[jboss-cvs] JBossAS SVN: r104240 - projects/cluster/ha-server-api/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Apr 25 16:31:09 EDT 2010


Author: bstansberry at jboss.com
Date: 2010-04-25 16:31:08 -0400 (Sun, 25 Apr 2010)
New Revision: 104240

Modified:
   projects/cluster/ha-server-api/trunk/pom.xml
Log:
Directly use org.jboss:jboss-parent as parent

Modified: projects/cluster/ha-server-api/trunk/pom.xml
===================================================================
--- projects/cluster/ha-server-api/trunk/pom.xml	2010-04-25 19:50:10 UTC (rev 104239)
+++ projects/cluster/ha-server-api/trunk/pom.xml	2010-04-25 20:31:08 UTC (rev 104240)
@@ -1,8 +1,8 @@
 <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">
   <parent>
-    <groupId>org.jboss.cluster</groupId>
-    <artifactId>jboss-cluster</artifactId>
-    <version>3.0.0.Final</version>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>5</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.cluster</groupId>
@@ -43,8 +43,30 @@
   </properties>
   
   <build>
-    <plugins>
+    <finalName>${artifactId}</finalName> 
+    <plugins>         
+       <!-- by default, compile to JDK 1.6 compatibility (individual modules and/or user can override) -->
+       <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+             <source>1.6</source>
+             <target>1.6</target>
+             <encoding>UTF-8</encoding>
+          </configuration>
+      </plugin>
       <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <printSummary>true</printSummary>
+          <disableXmlReport>false</disableXmlReport>
+          <!--<testFailureIgnore>true</testFailureIgnore>-->
+          <includes>
+            <include>**/*TestCase.java</include>
+          </includes>
+        </configuration>
+      </plugin> 
+      <plugin>
         <artifactId>maven-release-plugin</artifactId>
         <configuration>
           <!-- The tagBase property is needed during the release process so that the maven release plugin
@@ -189,7 +211,26 @@
       <version>${version.easymock}</version>
       <scope>test</scope>
     </dependency>
-  </dependencies>  
+  </dependencies> 
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
 
 </project>
 




More information about the jboss-cvs-commits mailing list