[jboss-cvs] JBossAS SVN: r57635 - in projects/cluster/trunk/ha-client: . src src/etc

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 12 23:22:39 EDT 2006


Author: bstansberry at jboss.com
Date: 2006-10-12 23:22:38 -0400 (Thu, 12 Oct 2006)
New Revision: 57635

Added:
   projects/cluster/trunk/ha-client/pom.xml
   projects/cluster/trunk/ha-client/src/etc/
   projects/cluster/trunk/ha-client/src/etc/default.mf
   projects/cluster/trunk/ha-client/tools/
Log:
Create cluster project

Added: projects/cluster/trunk/ha-client/pom.xml
===================================================================
--- projects/cluster/trunk/ha-client/pom.xml	2006-10-12 21:58:03 UTC (rev 57634)
+++ projects/cluster/trunk/ha-client/pom.xml	2006-10-13 03:22:38 UTC (rev 57635)
@@ -0,0 +1,107 @@
+<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>
+  <artifactId>jboss-ha-client</artifactId>
+  <packaging>jar</packaging>
+  <version>0.1.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>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <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>
+
+  
+  <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>     
+    
+    </plugins>
+  </build>
+  <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>
+

Added: projects/cluster/trunk/ha-client/src/etc/default.mf
===================================================================
--- projects/cluster/trunk/ha-client/src/etc/default.mf	2006-10-12 21:58:03 UTC (rev 57634)
+++ projects/cluster/trunk/ha-client/src/etc/default.mf	2006-10-13 03:22:38 UTC (rev 57635)
@@ -0,0 +1,10 @@
+Manifest-Version: 1.0
+Created-By: @java.vm.version@ (@java.vm.vendor@)
+Specification-Title: @specification.title@
+Specification-Version: @specification.version@
+Specification-Vendor: @specification.vendor@
+Implementation-Title: @implementation.title@
+Implementation-URL: @implementation.url@
+Implementation-Version: @implementation.version@
+Implementation-Vendor: @implementation.vendor@
+Implementation-Vendor-Id: @implementation.vendor.id@




More information about the jboss-cvs-commits mailing list