[jboss-cvs] JBossAS SVN: r105341 - projects/cluster/ha-server-core/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri May 28 16:45:11 EDT 2010


Author: bstansberry at jboss.com
Date: 2010-05-28 16:45:11 -0400 (Fri, 28 May 2010)
New Revision: 105341

Modified:
   projects/cluster/ha-server-core/trunk/pom.xml
Log:
Set up ha-server-core pom

Modified: projects/cluster/ha-server-core/trunk/pom.xml
===================================================================
--- projects/cluster/ha-server-core/trunk/pom.xml	2010-05-28 20:05:18 UTC (rev 105340)
+++ projects/cluster/ha-server-core/trunk/pom.xml	2010-05-28 20:45:11 UTC (rev 105341)
@@ -1,17 +1,17 @@
 <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>2.0.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>
-  <artifactId>jboss-ha-server-cache-ispn</artifactId>
+  <artifactId>jboss-ha-server-core</artifactId>
   <packaging>jar</packaging>
   <version>1.0.0-SNAPSHOT</version>
-  <name>JBoss AS - Infinispan Integration Implementation</name>
+  <name>JBoss AS - Core Implementation</name>
   <url>http://www.jboss.org</url>
-  <description>An Infinispan-based implementation of the SPIs defined in ha-server-cache-spi</description>
+  <description>An implementation of the core API defined in org.jboss.cluster:jboss-ha-server-api</description>
   <licenses>
    <license>
       <name>lgpl</name>
@@ -24,32 +24,51 @@
   </organization>
   
   <scm>
-    <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-cache-ispn/trunk</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-cache-ispn/trunk</developerConnection>
+    <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-core/trunk</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-core/trunk</developerConnection>
+    <url>http://fisheye.jboss.org/browse/JBossAS/projects/cluster/ha-server-core/trunk</url>
   </scm>
   
   <properties>
-    <version.jboss.ha.server.cache.spi>2.1.0.Final</version.jboss.ha.server.cache.spi>
     <version.jboss.ha.server.api>2.0.0-SNAPSHOT</version.jboss.ha.server.api>
     <version.jboss.common.core>2.2.17.GA</version.jboss.common.core>
     <version.jboss.logging>3.0.0.Beta2</version.jboss.logging>
     <version.infinispan>4.0.0.GA</version.infinispan>
-    <version.jgroups>2.10.0.Alpha3</version.jgroups>
-    <version.org.jboss.naming>5.0.5.GA</version.org.jboss.naming>
-    <version.suffix.org.jboss.javaee>.GA</version.suffix.org.jboss.javaee>
-    <version.org.jboss.metadata.war>2.0.0.Alpha14</version.org.jboss.metadata.war>
+    <version.jgroups>2.10.0.Beta2</version.jgroups>
     <version.junit>3.8.1</version.junit>
   </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>
         <version>2.0-beta-9</version>
         <configuration>
           <!-- The tagBase property is needed during the release process so that the maven release plugin
             will create the release tag in the appropriate location. -->
-          <tagBase>https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-cache-jbc/tags</tagBase>
+          <tagBase>https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-core/tags</tagBase>
         </configuration>
       </plugin>     
     </plugins>
@@ -75,12 +94,6 @@
     </dependency>
     
     <dependency>
-      <groupId>org.jboss.cluster</groupId>
-      <artifactId>jboss-ha-server-cache-spi</artifactId>
-      <version>${version.jboss.ha.server.cache.spi}</version>
-    </dependency>
-    
-    <dependency>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-common-core</artifactId>
       <version>${version.jboss.common.core}</version>
@@ -90,33 +103,8 @@
       <groupId>org.jboss.logging</groupId>
       <artifactId>jboss-logging</artifactId>
       <version>${version.jboss.logging}</version>
-    </dependency> 
-      
-    <dependency>
-      <groupId>org.infinispan</groupId>
-      <artifactId>infinispan-core</artifactId>
-      <version>${version.infinispan}</version>      
-      <optional>true</optional>
-      <exclusions>
-        <exclusion>
-          <groupId>jgroups</groupId>
-          <artifactId>jgroups</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>org.jboss</groupId>
-          <artifactId>jboss-common-core</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>commons-logging</groupId>
-          <artifactId>commons-logging</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>javax.transaction</groupId>
-          <artifactId>jta</artifactId>
-        </exclusion>
-      </exclusions>
     </dependency>
-    
+
     <dependency>
       <groupId>jgroups</groupId>
       <artifactId>jgroups</artifactId>
@@ -128,28 +116,8 @@
           <artifactId>commons-logging</artifactId>
         </exclusion>
       </exclusions>
-    </dependency>
-
-    <!-- For the JTA 1.1 API; consuming projects can safely
-         exclude this and replace with any valid source of this API -->
-    <dependency>
-       <groupId>org.jboss.javaee</groupId>
-       <artifactId>jboss-transaction-api</artifactId>
-       <version>1.0.1${version.suffix.org.jboss.javaee}</version>
-    </dependency>
+    </dependency> 
     
-    <dependency>
-      <groupId>org.jboss.naming</groupId>
-      <artifactId>jnp-client</artifactId>
-      <version>${version.org.jboss.naming}</version>
-    </dependency>
-      
-    <dependency>
-      <groupId>org.jboss.metadata</groupId>
-      <artifactId>jboss-metadata-war</artifactId>
-      <version>${version.org.jboss.metadata.war}</version>
-    </dependency>
-    
     <!-- Test dependencies -->
     
     <dependency>




More information about the jboss-cvs-commits mailing list