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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 31 09:34:06 EDT 2009


Author: vblagojevic at jboss.com
Date: 2009-03-31 09:34:06 -0400 (Tue, 31 Mar 2009)
New Revision: 23667

Added:
   maven2/jgroups/jgroups/2.6.9.GA/
   maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar
   maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.md5
   maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.sha1
   maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom
   maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.md5
   maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.sha1
Modified:
   maven2/jgroups/jgroups/maven-metadata.xml
   maven2/jgroups/jgroups/maven-metadata.xml.md5
   maven2/jgroups/jgroups/maven-metadata.xml.sha1
Log:
prerelease for Brian, if all good it becomes final 2.6.9GA release

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


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

Added: maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.md5
===================================================================
--- maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.md5	                        (rev 0)
+++ maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.md5	2009-03-31 13:34:06 UTC (rev 23667)
@@ -0,0 +1 @@
+305bba1fbc9347182bad1011bae2522f
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.sha1
===================================================================
--- maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.sha1	                        (rev 0)
+++ maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.jar.sha1	2009-03-31 13:34:06 UTC (rev 23667)
@@ -0,0 +1 @@
+e03c999b3e9f15b544bdf1fefd36d07fa0660f03
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom
===================================================================
--- maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom	                        (rev 0)
+++ maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom	2009-03-31 13:34:06 UTC (rev 23667)
@@ -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.6.9.GA</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.6.9.GA/jgroups-2.6.9.GA.pom.md5
===================================================================
--- maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.md5	                        (rev 0)
+++ maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.md5	2009-03-31 13:34:06 UTC (rev 23667)
@@ -0,0 +1 @@
+2de3f97bed5585b898fb38de6be4c9f5
\ No newline at end of file

Added: maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.sha1
===================================================================
--- maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.sha1	                        (rev 0)
+++ maven2/jgroups/jgroups/2.6.9.GA/jgroups-2.6.9.GA.pom.sha1	2009-03-31 13:34:06 UTC (rev 23667)
@@ -0,0 +1 @@
+5e1a598118f24e04263ed5eab49997538668828a
\ No newline at end of file

Modified: maven2/jgroups/jgroups/maven-metadata.xml
===================================================================
--- maven2/jgroups/jgroups/maven-metadata.xml	2009-03-31 11:11:29 UTC (rev 23666)
+++ maven2/jgroups/jgroups/maven-metadata.xml	2009-03-31 13:34:06 UTC (rev 23667)
@@ -10,7 +10,8 @@
       <version>2.4.5.GA</version>
       <version>2.6.8.CR1</version>
       <version>2.6.8.GA</version>
+      <version>2.6.9.GA</version>
     </versions>
-    <lastUpdated>20090220130747</lastUpdated>
+    <lastUpdated>20090331132540</lastUpdated>
   </versioning>
 </metadata>
\ No newline at end of file

Modified: maven2/jgroups/jgroups/maven-metadata.xml.md5
===================================================================
--- maven2/jgroups/jgroups/maven-metadata.xml.md5	2009-03-31 11:11:29 UTC (rev 23666)
+++ maven2/jgroups/jgroups/maven-metadata.xml.md5	2009-03-31 13:34:06 UTC (rev 23667)
@@ -1 +1 @@
-ace7c3cb403d3910556fc6d4b273efd5
\ No newline at end of file
+9cad5cd8c120eba5074c9f9d4c9528f8
\ No newline at end of file

Modified: maven2/jgroups/jgroups/maven-metadata.xml.sha1
===================================================================
--- maven2/jgroups/jgroups/maven-metadata.xml.sha1	2009-03-31 11:11:29 UTC (rev 23666)
+++ maven2/jgroups/jgroups/maven-metadata.xml.sha1	2009-03-31 13:34:06 UTC (rev 23667)
@@ -1 +1 @@
-89f987d8d96d1a3406af480feb2d849b31ebb977
\ No newline at end of file
+cd80d5b36c2bdbbe1b9b11b60fb2caeda1742894
\ No newline at end of file




More information about the jboss-cvs-commits mailing list