[jboss-cvs] JBossAS SVN: r67703 - in projects/cluster/build/tags: jboss-cluster-1.0.0.BETA1 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Dec 1 11:47:46 EST 2007


Author: bstansberry at jboss.com
Date: 2007-12-01 11:47:46 -0500 (Sat, 01 Dec 2007)
New Revision: 67703

Added:
   projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/
   projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/.project
   projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/pom.xml
Log:
[maven-release-plugin]  copy for tag jboss-cluster-1.0.0.BETA1

Copied: projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1 (from rev 67689, projects/cluster/build/trunk)

Copied: projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/.project (from rev 67694, projects/cluster/build/trunk/.project)
===================================================================
--- projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/.project	                        (rev 0)
+++ projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/.project	2007-12-01 16:47:46 UTC (rev 67703)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>jboss-ha-build</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+	</buildSpec>
+	<natures>
+	</natures>
+</projectDescription>

Copied: projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/pom.xml (from rev 67696, projects/cluster/build/trunk/pom.xml)
===================================================================
--- projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/pom.xml	                        (rev 0)
+++ projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1/pom.xml	2007-12-01 16:47:46 UTC (rev 67703)
@@ -0,0 +1,124 @@
+<?xml version="1.0"?>
+<!--
+A top level maven pom that expects a structure like: 
+  build/pom.xml
+  ha-client/pom.xml
+  ha-server-api/pom.xml
+
+This can be done using:  
+svn co https://svn.jboss.org/repos/jbossas/projects/cluster/build/trunk/ build
+svn co https://svn.jboss.org/repos/jbossas/projects/cluster/ha-client/trunk ha-client
+svn co https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-api/trunk/ ha-server-api
+-->
+<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</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.cluster</groupId>
+  <artifactId>jboss-cluster</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0.0.BETA1</version>
+  <name>JBoss Cluster Build</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Cluster</description>
+  
+  <scm>
+    <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/build/tags/jboss-cluster-1.0.0.BETA1</connection>
+  </scm>
+  
+  <properties>
+    <version.jboss.common.core>2.2.2.GA</version.jboss.common.core>
+    <version.jboss.logging.spi>2.0.3.GA</version.jboss.logging.spi>
+    <version.jboss.aop>2.0.0.CR1</version.jboss.aop>
+    <version.junit>3.8.1</version.junit>
+  </properties>
+  
+  <build>
+    <finalName>${artifactId}</finalName>  
+    <plugins>
+      <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
+            will create the release tag in the appropriate location. -->
+          <tagBase>https://svn.jboss.org/repos/jbossas/projects/cluster/build/tags</tagBase>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>jboss.maven-plugins</groupId>
+        <artifactId>jboss-deploy-maven-plugin</artifactId>
+        <version>1.2</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jboss-deploy</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <!-- In order to use this setting jboss.repository.root must be set on the command line or in
+          settings.xml.  More information can be found here: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossBuildMaven -->
+          <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <repositories>
+    <repository>
+      <id>repository.jboss.org</id>
+      <name>JBoss Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshots Repository</name>
+      <layout>default</layout>
+      <url>http://snapshots.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
+  
+  <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