[jboss-cvs] JBossAS SVN: r104956 - projects/cluster/ha-server-api/branches/1.1.x.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue May 18 19:58:08 EDT 2010
Author: bstansberry at jboss.com
Date: 2010-05-18 19:58:08 -0400 (Tue, 18 May 2010)
New Revision: 104956
Modified:
projects/cluster/ha-server-api/branches/1.1.x/pom.xml
Log:
Use org.jboss:jboss-parent as parent to better integrate with nexus
Modified: projects/cluster/ha-server-api/branches/1.1.x/pom.xml
===================================================================
--- projects/cluster/ha-server-api/branches/1.1.x/pom.xml 2010-05-18 22:45:41 UTC (rev 104955)
+++ projects/cluster/ha-server-api/branches/1.1.x/pom.xml 2010-05-18 23:58:08 UTC (rev 104956)
@@ -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>1.1.0.GA</version>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-parent</artifactId>
+ <version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.cluster</groupId>
@@ -24,7 +24,8 @@
</organization>
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-api/trunk/</connection>
+ <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-api/branches/1.1.x</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-api/branches/1.1.x</developerConnection>
</scm>
<properties>
@@ -41,8 +42,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
More information about the jboss-cvs-commits
mailing list