[jboss-cvs] Repository SVN: r933 - in maven2/jgroups/jgroups: 2.5.0-GA and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 7 05:15:13 EDT 2007


Author: manik.surtani at jboss.com
Date: 2007-08-07 05:15:13 -0400 (Tue, 07 Aug 2007)
New Revision: 933

Added:
   maven2/jgroups/jgroups/2.5.0-GA/
   maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar
   maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.md5
   maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.sha1
   maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom
   maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.md5
   maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.sha1
Log:
Added JGroups 2.5.0.GA

Added: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar
===================================================================
(Binary files differ)


Property changes on: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.md5
===================================================================
--- maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.md5	                        (rev 0)
+++ maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.md5	2007-08-07 09:15:13 UTC (rev 933)
@@ -0,0 +1 @@
+6d50e4cbcc88f8db364d358d160b49cd
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.sha1
===================================================================
--- maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.sha1	                        (rev 0)
+++ maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.jar.sha1	2007-08-07 09:15:13 UTC (rev 933)
@@ -0,0 +1 @@
+83b00819efc43adb8fd441eac24e3dc6876a0746
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom
===================================================================
--- maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom	                        (rev 0)
+++ maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom	2007-08-07 09:15:13 UTC (rev 933)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-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">
+
+   <modelVersion>4.0.0</modelVersion>
+  <groupId>jgroups</groupId>
+   <artifactId>jgroups</artifactId>
+   <name>JGroups</name>
+   <version>2.5.0-CR1</version>
+   <url>http://www.jgroups.org</url>
+   <build>
+      <sourceDirectory>src</sourceDirectory>
+      <testSourceDirectory>tests</testSourceDirectory>
+      <testResources>
+         <testResource>
+            <directory>conf</directory>
+            <includes>
+               <include>**/*.xml</include>
+            </includes>
+         </testResource>
+      </testResources>
+      <plugins>
+         <plugin>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <configuration>
+               <source>1.5</source>
+               <target>1.5</target>
+               <testIncludes>
+                  <include>functional/**/*.java</include>
+               </testIncludes>
+            </configuration>
+         </plugin>
+         <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <testFailureIgnore>true</testFailureIgnore>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+   <repositories>
+      <repository>
+         <id>jboss</id>
+         <name>JBoss Inc. Repository</name>
+         <url>http://repository.jboss.com/maven2/</url>
+         <snapshots>
+            <enabled>true</enabled>
+         </snapshots>
+      </repository>
+   </repositories>
+   <dependencies>
+      <dependency>
+         <groupId>ant</groupId>
+         <artifactId>ant</artifactId>
+         <version>1.6.5</version>
+		 <optional>true</optional>
+      </dependency>
+      <dependency>
+         <groupId>ant</groupId>
+         <artifactId>ant-junit</artifactId>
+         <version>1.6.5</version>
+		 <optional>true</optional>
+      </dependency>
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <version>3.8.1</version>
+		 <scope>test</scope>
+      </dependency>
+   </dependencies>
+</project>
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.md5
===================================================================
--- maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.md5	                        (rev 0)
+++ maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.md5	2007-08-07 09:15:13 UTC (rev 933)
@@ -0,0 +1 @@
+f16b6ba1ea791af5ade0929216da5c28
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.sha1
===================================================================
--- maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.sha1	                        (rev 0)
+++ maven2/jgroups/jgroups/2.5.0-GA/jgroups-2.5.0-GA.pom.sha1	2007-08-07 09:15:13 UTC (rev 933)
@@ -0,0 +1 @@
+68c30c7c41ab5017ca48e734b976af0a38367a5c
\ No newline at end of file




More information about the jboss-cvs-commits mailing list