[jboss-cvs] Repository SVN: r28591 - in jboss/cache/jbosscache-core: 3.2.0.CR1-brew and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 17 13:18:05 EDT 2009


Author: fnasser at redhat.com
Date: 2009-08-17 13:18:05 -0400 (Mon, 17 Aug 2009)
New Revision: 28591

Added:
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/component-info.xml
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.jar
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.pom
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-3.2.0.CR1.tar.bz2
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-jpp-depmap.xml
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-settings.xml
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-common-parent-1.5.pom
   jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-support-1.5.pom
Log:
CR1 of the expected Cache 3.2.0

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/component-info.xml
===================================================================
--- jboss/cache/jbosscache-core/3.2.0.CR1-brew/component-info.xml	                        (rev 0)
+++ jboss/cache/jbosscache-core/3.2.0.CR1-brew/component-info.xml	2009-08-17 17:18:05 UTC (rev 28591)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="">
+  <component id="jboss/cache/jbosscache-core"
+             licenseType=""
+             version="3.2.0.CR1-brew"
+             tag="jboss-cache-core-3_2_0-0_1_CR1_1_ep5_el4"
+             description=""
+             
+             > 
+              
+    <artifact id="jbosscache-core.jar"/>
+
+
+    <export>
+      <include input="jbosscache-core.jar"/>
+
+    </export>
+  </component>
+</project>

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.jar
===================================================================
(Binary files differ)


Property changes on: jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.pom
===================================================================
--- jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.pom	                        (rev 0)
+++ jboss/cache/jbosscache-core/3.2.0.CR1-brew/lib/jbosscache-core.pom	2009-08-17 17:18:05 UTC (rev 28591)
@@ -0,0 +1,511 @@
+<?xml version="1.0"?>
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <properties>
+        <jbosscache-core-version>3.2.0.CR1</jbosscache-core-version>
+        <!-- By default only run tests in the "unit" group -->
+        <defaultTestGroup>unit</defaultTestGroup>
+        <!-- By default only generate Javadocs when we install the module. -->
+        <javadocPhase>install</javadocPhase>
+    </properties>
+
+    <parent>
+        <groupId>org.jboss.cache</groupId>
+        <artifactId>jbosscache-common-parent</artifactId>
+        <version>1.5</version>
+    </parent>
+    <groupId>org.jboss.cache</groupId>
+    <artifactId>jbosscache-core</artifactId>
+    <version>${jbosscache-core-version}</version>
+    <name>JBoss Cache - Core Edition</name>
+    <description>JBoss Cache - Core Edition</description>
+    <url>http://www.jbosscache.org</url>
+    <packaging>jar</packaging>
+    <dependencies>
+        <dependency>
+            <groupId>jgroups</groupId>
+            <artifactId>jgroups</artifactId>
+            <!--<version>2.8.0.Beta2</version>-->
+           <version>2.6.9.GA</version>
+        </dependency>
+
+        <!--
+              For the JTA 1.1 API; consuming projects can safely
+              exclude this and replace with any valid source of this API, such as a Java EE app server.
+        -->
+        <dependency>
+         <groupId>org.jboss.javaee</groupId>
+         <artifactId>jboss-transaction-api</artifactId>
+         <version>1.0.1.GA</version>
+      </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.jboss</groupId>
+            <artifactId>jboss-common-core</artifactId>
+            <version>2.2.14.GA</version>
+        </dependency>
+
+        <!-- optional dependencies -->
+        <dependency>
+            <groupId>jdbm</groupId>
+            <artifactId>jdbm</artifactId>
+            <version>1.0</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>c3p0</groupId>
+            <artifactId>c3p0</artifactId>
+            <version>0.9.1.2</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>com.sleepycat</groupId>
+            <artifactId>je</artifactId>
+            <version>3.3.75</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>net.jcip</groupId>
+            <artifactId>jcip-annotations</artifactId>
+            <version>1.0</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>net.noderunner</groupId>
+            <artifactId>amazon-s3</artifactId>
+            <version>1.0.0.0</version>
+            <optional>true</optional>
+        </dependency>
+
+        <!-- test dependencies -->
+        <dependency>
+            <groupId>hsqldb</groupId>
+            <artifactId>hsqldb</artifactId>
+            <version>1.8.0.7</version>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <version>2.4</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>jboss.jbossts</groupId>
+            <artifactId>jbossjta</artifactId>
+            <version>4.4.0.GA</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>beanshell</groupId>
+            <artifactId>bsh</artifactId>
+            <version>2.0b4</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>net.noderunner</groupId>
+            <artifactId>http</artifactId>
+            <version>1.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+            <scope>test</scope>
+        </dependency>
+        <!-- 5.8 is needed for proper parallel test execution -->
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <version>5.8</version>
+            <scope>test</scope>
+            <classifier>jdk15</classifier>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <!-- ensure parallel test execution -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.4.3-JBOSS</version>
+                <configuration>
+                    <parallel>tests</parallel>
+                    <threadCount>10</threadCount>
+                    <forkMode>none</forkMode>
+                    <systemProperties>
+                        <property>
+                            <name>jgroups.stack</name>
+                            <value>${protocol.stack}</value>
+                        </property>
+                    </systemProperties>
+                    <trimStackTrace>false</trimStackTrace>
+                    <properties>
+                        <property>
+                            <name>listener</name>
+                            <value>org.jboss.cache.util.UnitTestTestNGListener</value>
+                        </property>
+                    </properties>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.2-beta-1</version>
+                <executions>
+                    <execution>
+                        <id>assemble</id>
+                        <phase>install</phase>
+                        <goals>
+                            <goal>attached</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>assembly/bin.xml</descriptor>
+                                <descriptor>assembly/doc.xml</descriptor>
+                                <descriptor>assembly/all.xml</descriptor>
+                                <descriptor>assembly/src.xml</descriptor>
+                            </descriptors>
+                            <finalName>${artifactId}-${jbosscache-core-version}</finalName>
+                            <outputDirectory>target/distribution</outputDirectory>
+                            <workDirectory>target/assembly/work</workDirectory>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                            <mainClass>org.jboss.cache.Version</mainClass>
+                        </manifest>
+                    </archive>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>build-test-jar</id>
+                        <goals>
+                            <goal>test-jar</goal>
+                        </goals>
+                        <configuration>
+                            <archive>
+                                <manifest>
+                                    <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+                                    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                                </manifest>
+                            </archive>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <version>2.4.3-JBOSS</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <!-- basic JBoss repository so that the common parent POM in jbosscache-support can be found -->
+    <repositories>
+        <repository>
+            <id>repository.jboss.org</id>
+            <url>http://repository.jboss.org/maven2</url>
+        </repository>
+        <repository>
+            <id>snapshots.jboss.org</id>
+            <url>http://snapshots.jboss.org/maven2</url>
+        </repository>
+        <!-- For Amazon S3 artifacts -->
+        <repository>
+            <id>e-xml.sourceforge.net</id>
+            <url>http://e-xml.sourceforge.net/maven2/repository</url>
+        </repository>
+        <!-- For Sleepycat -->
+        <repository>
+            <id>berkeleydb-je.repository</id>
+            <url>http://download.oracle.com/maven/</url>
+        </repository>
+    </repositories>
+
+    <profiles>
+        <profile>
+            <!-- This testMoreState generates Javadocs and the UserGuide, FAQs and Tutorial in the "package" phase. -->
+            <id>Docs</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <properties>
+                <!-- override to generate javadocs in the "package" phase -->
+                <javadocPhase>package</javadocPhase>
+            </properties>
+            <build>
+                <plugins>
+                    <!-- the docbook generation plugin for the user guide -->
+                    <plugin>
+                        <groupId>org.jboss.maven.plugins</groupId>
+                        <artifactId>maven-jdocbook-plugin</artifactId>
+                        <version>2.0.0</version>
+                        <extensions>true</extensions>
+                        <dependencies>
+                            <dependency>
+                                <groupId>org.jboss</groupId>
+                                <artifactId>jbossorg-docbook-xslt</artifactId>
+                                <version>1.1.0</version>
+                            </dependency>
+                            <dependency>
+                                <groupId>org.jboss</groupId>
+                                <artifactId>jbossorg-jdocbook-style</artifactId>
+                                <version>1.1.0</version>
+                                <type>jdocbook-style</type>
+                            </dependency>
+                        </dependencies>
+                        <executions>
+
+                            <!-- The User Guide-->
+                            <execution>
+                                <id>userguide_en</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>resources</goal>
+                                    <goal>generate</goal>
+                                </goals>
+                                <configuration>
+                                    <sourceDocumentName>master.xml</sourceDocumentName>
+                                    <sourceDirectory>${basedir}/src/main/docbook/userguide/en</sourceDirectory>
+                                    <imageResource>
+                                        <directory>${basedir}/src/main/docbook/images</directory>
+                                    </imageResource>
+                                    <cssResource>
+                                        <directory>${basedir}/src/main/docbook/css</directory>
+                                    </cssResource>
+                                    <targetDirectory>${basedir}/target/docbook/userguide_en</targetDirectory>
+                                    <formats>
+                                        <format>
+                                            <formatName>pdf</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+                                            <finalName>userguide_en.pdf</finalName>
+                                        </format>
+                                        <format>
+                                            <formatName>html</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+                                            <finalName>index.html</finalName>
+                                        </format>
+                                        <format>
+                                            <formatName>html_single</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl
+                                            </stylesheetResource>
+                                            <finalName>index.html</finalName>
+                                        </format>
+                                    </formats>
+                                    <options>
+                                        <xincludeSupported>false</xincludeSupported>
+                                    </options>
+                                </configuration>
+                            </execution>
+
+                            <!-- The Tutorial -->
+                            <execution>
+                                <id>tutorial_en</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>resources</goal>
+                                    <goal>generate</goal>
+                                </goals>
+                                <configuration>
+                                    <sourceDocumentName>master.xml</sourceDocumentName>
+                                    <sourceDirectory>${basedir}/src/main/docbook/tutorial/en</sourceDirectory>
+                                    <imageResource>
+                                        <directory>${basedir}/src/main/docbook/images</directory>
+                                    </imageResource>
+                                    <cssResource>
+                                        <directory>${basedir}/src/main/docbook/css</directory>
+                                    </cssResource>
+                                    <targetDirectory>${basedir}/target/docbook/tutorial_en</targetDirectory>
+                                    <formats>
+                                        <format>
+                                            <formatName>pdf</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+                                            <finalName>tutorial_en.pdf</finalName>
+                                        </format>
+                                        <format>
+                                            <formatName>html</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+                                            <finalName>index.html</finalName>
+                                        </format>
+                                        <format>
+                                            <formatName>html_single</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl
+                                            </stylesheetResource>
+                                            <finalName>index.html</finalName>
+                                        </format>
+                                    </formats>
+                                    <options>
+                                        <xincludeSupported>false</xincludeSupported>
+                                    </options>
+                                </configuration>
+                            </execution>
+
+                            <!-- the FAQs -->
+                            <execution>
+                                <id>faq_en</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>resources</goal>
+                                    <goal>generate</goal>
+                                </goals>
+                                <configuration>
+                                    <sourceDocumentName>master.xml</sourceDocumentName>
+                                    <sourceDirectory>${basedir}/src/main/docbook/faq/en</sourceDirectory>
+                                    <imageResource>
+                                        <directory>${basedir}/src/main/docbook/images</directory>
+                                    </imageResource>
+                                    <cssResource>
+                                        <directory>${basedir}/src/main/docbook/css</directory>
+                                    </cssResource>
+                                    <targetDirectory>${basedir}/target/docbook/faq_en</targetDirectory>
+                                    <formats>
+                                        <format>
+                                            <formatName>pdf</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+                                            <finalName>faq_en.pdf</finalName>
+                                        </format>
+                                        <format>
+                                            <formatName>html</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+                                            <finalName>index.html</finalName>
+                                        </format>
+                                        <format>
+                                            <formatName>html_single</formatName>
+                                            <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl
+                                            </stylesheetResource>
+                                            <finalName>index.html</finalName>
+                                        </format>
+                                    </formats>
+                                    <options>
+                                        <xincludeSupported>false</xincludeSupported>
+                                    </options>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+
+        <profile>
+            <id>test-hudson</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <properties>
+                <defaultTestGroup>functional,unit</defaultTestGroup>
+                <protocol.stack>tcp</protocol.stack>
+            </properties>
+        </profile>
+
+        <profile>
+            <id>test-functional</id>
+            <properties>
+                <defaultTestGroup>functional</defaultTestGroup>
+                <protocol.stack>tcp</protocol.stack>
+            </properties>
+        </profile>
+
+        <profile>
+            <id>test-unit</id>
+            <properties>
+                <defaultTestGroup>unit</defaultTestGroup>
+            </properties>
+        </profile>
+
+        <profile>
+            <id>test-jgroups</id>
+            <properties>
+                <defaultTestGroup>jgroups</defaultTestGroup>
+            </properties>
+        </profile>
+
+        <profile>
+            <id>test-transaction</id>
+            <properties>
+                <defaultTestGroup>transaction</defaultTestGroup>
+            </properties>
+        </profile>
+
+        <profile>
+            <id>profiling</id>
+            <properties>
+                <defaultTestGroup>profiling</defaultTestGroup>
+            </properties>
+        </profile>
+
+        <profile>
+            <id>test-integration</id>
+            <properties>
+                <defaultTestGroup>integration</defaultTestGroup>
+                <protocol.stack>udp</protocol.stack>
+            </properties>
+        </profile>
+
+
+        <profile>
+            <id>JBossAS</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <properties>
+                <jbosscache-core-version>3.2.0.CR1-JBossAS</jbosscache-core-version>
+                <defaultTestGroup>functional,unit</defaultTestGroup>
+                <protocol.stack>tcp</protocol.stack>
+            </properties>
+            <dependencies>
+                <dependency>
+                    <groupId>jgroups</groupId>
+                    <artifactId>jgroups</artifactId>
+                    <version>2.6.9.GA</version>
+                </dependency>
+                <!-- Replaces javax.transaction/jta -->
+                <dependency>
+                    <groupId>org.jboss.javaee</groupId>
+                    <artifactId>jboss-javaee</artifactId>
+                    <version>5.0.1.GA</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.jboss</groupId>
+                    <artifactId>jboss-common-core</artifactId>
+                    <version>2.2.14.GA</version>
+                </dependency>
+                <dependency>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                    <version>1.1.0.jboss</version>
+                </dependency>
+                <dependency>
+                    <groupId>jboss.jbossts</groupId>
+                    <artifactId>jbossjta</artifactId>
+                    <version>4.4.0.GA</version>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+</project>

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-3.2.0.CR1.tar.bz2
===================================================================
(Binary files differ)


Property changes on: jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-3.2.0.CR1.tar.bz2
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-jpp-depmap.xml
===================================================================
--- jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-jpp-depmap.xml	                        (rev 0)
+++ jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-jpp-depmap.xml	2009-08-17 17:18:05 UTC (rev 28591)
@@ -0,0 +1,190 @@
+<dependencies>
+
+ <dependency>
+   <maven>
+     <groupId>slide</groupId>
+     <artifactId>slide-webdavlib</artifactId>
+     <version>2.1</version>
+   </maven>
+   <jpp>
+     <groupId>JPP/slide</groupId>
+     <artifactId>slide-webdavlib</artifactId>
+     <version>2.1</version>
+   </jpp>
+ </dependency>
+
+<!--
+-->
+
+
+ <dependency>
+   <maven>
+     <groupId>junit</groupId>
+     <artifactId>junit4</artifactId>
+     <version>4.0</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>junit44</artifactId>
+     <version>4.4</version>
+   </jpp>
+ </dependency>
+
+
+ <dependency>
+   <maven>
+     <groupId>beanshell</groupId>
+     <artifactId>bsh</artifactId>
+     <version>2.0b4</version>
+   </maven>
+   <jpp>
+     <groupId>JPP/bsh2</groupId>
+     <artifactId>bsh</artifactId>
+     <version>2.0</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>com.sleepycat</groupId>
+     <artifactId>je</artifactId>
+     <version>3.3.75</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>berkeleydb-je3</artifactId>
+     <version>3.2.76</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>jgroups</groupId>
+     <artifactId>jgroups</artifactId>
+     <version>2.6.2</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>jgroups</artifactId>
+     <version>2.4.1</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>jboss.jbossts</groupId>
+     <artifactId>jbossjta</artifactId>
+     <version>4.3.0.GA</version>
+   </maven>
+   <jpp>
+     <groupId>JPP/jbossts</groupId>
+     <artifactId>jbossjts</artifactId>
+     <version>4.6.1</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>javax.transaction</groupId>
+     <artifactId>jta</artifactId>
+     <version>1.1</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>jta_1_1_api</artifactId>
+     <version>1.1</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>c3p0</groupId>
+     <artifactId>c3p0</artifactId>
+     <version>0.9.1.1</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>c3p0</artifactId>
+     <version>0.9.1.2</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>hsqldb</groupId>
+     <artifactId>hsqldb</artifactId>
+     <version>1.8.0.7</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>hsqldb</artifactId>
+     <version>1.8.0.8</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>org.jboss.cache</groupId>
+     <artifactId>jbosscache-common-parent</artifactId>
+     <version>1.5</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>jbosscache-common-parent</artifactId>
+     <version>1.3</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>org.jboss.cache</groupId>
+     <artifactId>jbosscache-support</artifactId>
+     <version>1.3</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>jbosscache-support</artifactId>
+     <version>1.3</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>jdbm</groupId>
+     <artifactId>jdbm</artifactId>
+     <version>1.0</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>jdbm</artifactId>
+     <version>0.20</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>org.apache.derby</groupId>
+     <artifactId>derby</artifactId>
+     <version>10.2.2.0</version>
+   </maven>
+   <jpp>
+     <groupId>JPP/derby</groupId>
+     <artifactId>derby</artifactId>
+     <version>10.0.2.1</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>beanshell</groupId>
+     <artifactId>bsh</artifactId>
+     <version>2.0b4</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>bsh</artifactId>
+     <version>1.3.0</version>
+   </jpp>
+ </dependency>
+
+</dependencies>

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-settings.xml
===================================================================
--- jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-settings.xml	                        (rev 0)
+++ jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jboss-cache-core-settings.xml	2009-08-17 17:18:05 UTC (rev 28591)
@@ -0,0 +1,47 @@
+<settings>
+	<profiles>
+		<profile>
+			<id>JPP</id>
+			<repositories>
+				<repository>
+					<id>internal</id>
+					<layout>jpp</layout>
+					<url>__JPP_URL_PLACEHOLDER__</url>
+				</repository>
+				<repository>
+					<id>external</id>
+					<layout>jpp</layout>
+					<url>__JAVADIR_PLACEHOLDER__</url>
+				</repository>
+				<repository>
+					<id>local</id>
+					<layout>jpp</layout>
+					<url>__MAVENREPO_DIR_PLACEHOLDER__</url>
+				</repository>
+			</repositories>
+			<pluginRepositories>
+				<pluginRepository>
+					<id>plugins-internal</id>
+					<name>plugins-internal</name>
+					<layout>jpp</layout>
+					<url>__JPP_URL_PLACEHOLDER__</url>
+				</pluginRepository>
+				<pluginRepository>
+					<id>plugins-external</id>
+					<name>plugins-external</name>
+					<layout>jpp</layout>
+					<url>__JAVADIR_PLACEHOLDER__</url>
+				</pluginRepository>
+				<pluginRepository>
+					<id>plugins-maven</id>
+					<name>plugins-maven</name>
+					<layout>jpp</layout>
+					<url>__MAVENDIR_PLUGIN_PLACEHOLDER__</url>
+				</pluginRepository>
+			</pluginRepositories>
+		</profile>
+	</profiles>
+	<activeProfiles>
+		<activeProfile>JPP</activeProfile>
+	</activeProfiles>
+</settings>

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-common-parent-1.5.pom
===================================================================
--- jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-common-parent-1.5.pom	                        (rev 0)
+++ jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-common-parent-1.5.pom	2009-08-17 17:18:05 UTC (rev 28591)
@@ -0,0 +1,480 @@
+<?xml version="1.0"?>
+<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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.jboss.cache</groupId>
+		<artifactId>jbosscache-support</artifactId>
+  		<version>1.5</version>
+	</parent>
+	<groupId>org.jboss.cache</groupId>
+	<artifactId>jbosscache-common-parent</artifactId>
+	<version>1.5</version>
+	<packaging>pom</packaging>
+	<name>JBoss Cache Common Parent</name>
+	<description>The parent POM for all JBoss Cache modules.</description>
+	<url>http://labs.jboss.org/jbosscache</url>
+	<organization>
+		<name>JBoss, a division of Red Hat</name>
+		<url>http://labs.jboss.org</url>
+	</organization>
+	<licenses>
+		<license>
+			<name>GNU Lesser General Public License</name>
+			<url>http://www.gnu.org/copyleft/lesser.html</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+	<scm>
+		<connection>scm:svn:http://anonsvn.jboss.org/repos/jbosscache</connection>
+		<developerConnection>scm:svn:https://svn.jboss.org/repos/jbosscache</developerConnection>
+		<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbosscache/</url>
+	</scm>
+	<issueManagement>
+		<system>jira</system>
+		<url>http://jira.jboss.com/jira/browse/JBCACHE</url>
+	</issueManagement>
+	<ciManagement>
+		<system>hudson</system>
+		<url>http://hudson.qa.jboss.com/hudson/view/JBoss%20Cache/</url>
+		<notifiers>
+			<notifier>
+				<type>mail</type>
+				<address>jbosscache-dev at lists.jboss.org</address>
+			</notifier>
+		</notifiers>
+	</ciManagement>
+	<mailingLists>
+		<mailingList>
+			<name>JBoss Cache Announcements</name>
+			<post>jbosscache-announce at lists.jboss.org</post>
+			<subscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-announce</subscribe>
+			<unsubscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-announce</unsubscribe>
+			<archive>http://lists.jboss.org/pipermail/jbosscache-dev/</archive>
+		</mailingList>
+		<mailingList>
+			<name>JBoss Cache Commit Notificatons</name>
+			<post>jbosscache-commits at lists.jboss.org</post>
+			<subscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-commits</subscribe>
+			<unsubscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-commits</unsubscribe>
+			<archive>http://lists.jboss.org/pipermail/jbosscache-commits/</archive>
+		</mailingList>
+		<mailingList>
+			<name>JBoss Cache Developers</name>
+			<post>jbosscache-dev at lists.jboss.org</post>
+			<subscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-dev</subscribe>
+			<unsubscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-dev</unsubscribe>
+			<archive>http://lists.jboss.org/pipermail/jbosscache-dev/</archive>
+		</mailingList>
+		<mailingList>
+			<name>JBoss Cache Issue Notifications</name>
+			<post>jbosscache-issues at lists.jboss.org</post>
+			<subscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-issues</subscribe>
+			<unsubscribe>https://lists.jboss.org/mailman/listinfo/jbosscache-issues</unsubscribe>
+			<archive>http://lists.jboss.org/pipermail/jbosscache-issues/</archive>
+		</mailingList>
+	</mailingLists>
+	<build>
+		<plugins>
+<!-- require at least JDK 1.5 to run the build -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<id>enforce-java</id>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireJavaVersion>
+									<version>[1.5,)</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+<!-- by default, compile to JDK 1.5 compatibility (individual modules and/or user can override) -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.0.1</version>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+<!-- add specification/implementation details to the manifests -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jar-plugin</artifactId>
+				<configuration>
+					<excludes>
+						<exclude>**/*.properties</exclude>
+					</excludes>
+					<archive>
+						<manifest>
+							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+						</manifest>
+					</archive>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<version>2.3</version>
+		        <inherited>true</inherited>
+				<configuration>
+					<systemProperties>
+						<property>
+							<name>bind.address</name>
+							<value>127.0.0.1</value>
+						</property>
+						<property>
+							<name>jgroups.stack</name>
+							<value>udp</value>
+						</property>
+						<property>
+							<name>java.net.preferIPv4Stack</name>
+							<value>true</value>
+						</property>
+					</systemProperties>
+					<groups>${defaultTestGroup}</groups>
+					<forkMode>always</forkMode>
+<!-- increasing JVM heap size -->
+					<argLine>-Xmx1024M</argLine>
+<!-- Warning, this does not work right on 2.4-SNAPSHOT, (see SUREFIRE-349) -->
+<!-- This seems to fail in some cases on 2.3 as well, disable for now -->
+					<redirectTestOutputToFile>false</redirectTestOutputToFile>
+					<reportFormat>xml</reportFormat>
+				</configuration>
+			</plugin>
+			
+<!-- javadocs : we want these run in the 'package' lifecycle phase-->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<phase>${javadocPhase}</phase>
+						<goals>
+							<goal>javadoc</goal>
+						</goals>
+						<configuration>
+							<aggregate>${jbosscache.reports.aggregate}</aggregate>
+							<links>
+								<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+								<link>http://java.sun.com/javaee/5/docs/api/</link>
+							</links>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+<!-- Eclipse -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-eclipse-plugin</artifactId>
+				<configuration>
+             		<downloadSources>true</downloadSources>
+					<buildOutputDirectory>${basedir}/eclipse-output</buildOutputDirectory>
+				</configuration>
+			</plugin>			
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-idea-plugin</artifactId>
+				<configuration>
+             		<downloadSources>true</downloadSources>
+				</configuration>
+			</plugin>			
+			
+			<!-- Generate src jars as well -->
+			<plugin>
+		        <groupId>org.apache.maven.plugins</groupId>
+		        <artifactId>maven-source-plugin</artifactId>
+		        <inherited>true</inherited>
+		        <executions>
+		          <execution>
+		            <id>attach-sources</id>
+		            <goals>
+		              <goal>jar</goal>
+		            </goals>
+		          </execution>
+		        </executions>
+		      </plugin>
+		</plugins>
+		<finalName>${artifactId}</finalName>
+	</build>
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-report-plugin</artifactId>
+				<version>2.3</version>
+			</plugin>
+<!-- DISABLE - Maven doesn't build the classpath correctly 
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <aggregate>${jbosscache.reports.aggregate}</aggregate>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                        <link>http://java.sun.com/javaee/5/docs/api/</link>
+                    </links>
+                </configuration>
+            </plugin>
+            -->
+<!-- JXR - links from javadocs and junit reports to an html representation of the code -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jxr-plugin</artifactId>
+				<configuration>
+					<aggregate>${jbosscache.reports.aggregate}</aggregate>
+				</configuration>
+			</plugin>
+<!-- PMD code analysis reports -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-pmd-plugin</artifactId>
+				<configuration>
+					<aggregate>${jbosscache.reports.aggregate}</aggregate>
+					<linkXref>true</linkXref>
+					<minimumTokens>100</minimumTokens>
+					<targetJdk>1.5</targetJdk>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>taglist-maven-plugin</artifactId>
+				<configuration>
+					<aggregate>${jbosscache.reports.aggregate}</aggregate>
+					<tags>
+						<tag>@FIXME</tag>
+						<tag>@fixme</tag>
+						<tag>FIXME</tag>
+						<tag>fixme</tag>
+						<tag>@TODO</tag>
+						<tag>@todo</tag>
+						<tag>TODO</tag>
+						<tag>todo</tag>
+					</tags>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>javancss-maven-plugin</artifactId>
+			</plugin>
+<!-- Findbugs report -->
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>findbugs-maven-plugin</artifactId>
+				<version>1.2-SNAPSHOT</version>
+				<configuration>
+					<onlyAnalyze>org.jboss.cache.*</onlyAnalyze>
+					<xmlOutput>true</xmlOutput>
+					<xmlOutputDirectory>target</xmlOutputDirectory>
+				</configuration>
+			</plugin>
+		</plugins>
+	</reporting>
+	<properties>
+<!-- for now, at least, lets aggregate them -->
+		<jbosscache.reports.aggregate>true</jbosscache.reports.aggregate>
+		<!-- Default TestNG groups to run -->
+		<defaultTestGroup>functional</defaultTestGroup>
+		<!-- Default phase in which javadocs are generated -->
+		<javadocPhase>package</javadocPhase>
+	</properties>
+	<repositories>
+		<repository>
+			<id>repository.jboss.org</id>
+			<url>http://repository.jboss.org/maven2</url>
+		</repository>
+		<repository>
+			<id>snapshots.jboss.org</id>
+			<url>http://snapshots.jboss.org/maven2</url>
+		</repository>
+	</repositories>
+	<pluginRepositories>
+		<pluginRepository>
+			<id>Main Maven Repo</id>
+			<url>http://repo1.maven.org/maven2/</url>
+		</pluginRepository>
+<!--  Avoid enabling this, it brings in unstable plugins 
+        <pluginRepository>
+            <id>apache.snapshots</id>
+            <url>http://people.apache.org/repo/m2-snapshot-repository/</url>
+        </pluginRepository>
+-->
+		<pluginRepository>
+			<id>snapshots.repository.codehaus.org</id>
+			<url>http://snapshots.repository.codehaus.org</url>
+		</pluginRepository>
+		<pluginRepository>
+			<id>repository.jboss.org</id>
+			<url>http://repository.jboss.org/maven2</url>
+		</pluginRepository>
+		<pluginRepository>
+			<id>snapshots.jboss.org</id>
+			<url>http://snapshots.jboss.org/maven2</url>
+		</pluginRepository>
+	</pluginRepositories>
+	<dependencies>
+<!-- test dependencies to run the test suites -->
+		<dependency>
+			<groupId>org.testng</groupId>
+			<artifactId>testng</artifactId>
+			<version>5.1</version>
+			<scope>test</scope>
+			<classifier>jdk15</classifier>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.14</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+<!-- Profiles, used for test permutations -->
+	<profiles>
+		<profile>
+			<!-- EMMA for code coverage -->			
+			<id>codeCoverage</id>
+			<build>
+				<plugins>
+				<plugin>      
+			        <groupId>org.codehaus.mojo</groupId>
+			        <artifactId>emma-maven-plugin</artifactId>
+			        <version>1.0-SNAPSHOT</version>
+			        <inherited>true</inherited>          
+			        <executions>
+			          <execution>                
+			            <goals>
+			              <goal>instrument</goal>
+			            </goals>
+			          </execution>
+			        </executions>
+			      </plugin>
+				<!-- override the surefire plugin with this stuff -->
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-surefire-plugin</artifactId>
+					<version>2.3</version>
+					<inherited>true</inherited>
+					<configuration>
+						<systemProperties>
+							<property>
+								<name>bind.address</name>
+								<value>127.0.0.1</value>
+							</property>
+							<property>
+								<name>jgroups.stack</name>
+								<value>udp</value>
+							</property>
+							<property>
+								<name>java.net.preferIPv4Stack</name>
+								<value>true</value>
+							</property>
+						</systemProperties>
+						<groups>${defaultTestGroup}</groups>
+						<forkMode>always</forkMode>
+						<!-- increasing JVM heap size -->
+						<argLine>-Xmx1024M</argLine>
+						<!-- Warning, this does not work right on 2.4-SNAPSHOT, (see SUREFIRE-349) -->
+						<!-- This seems to fail in some cases on 2.3 as well, disable for now -->
+						<redirectTestOutputToFile>false</redirectTestOutputToFile>
+						<reportFormat>xml</reportFormat>
+						<classesDirectory>${project.build.directory}/emma-classes</classesDirectory>
+					</configuration>
+				</plugin>
+			</plugins>
+			</build>
+			<reporting>
+				<plugins>
+				<!-- EMMA report -->
+					<plugin>      
+						<groupId>org.codehaus.mojo</groupId>
+				      	<artifactId>emma-maven-plugin</artifactId>
+				      	<version>1.0-SNAPSHOT</version>
+				        <inherited>true</inherited>          
+				    </plugin>			
+				</plugins>
+			</reporting>		
+		</profile>			
+		<profile>
+			<id>jgroups-tcp</id>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<version>2.3</version>
+						<configuration>
+							<systemProperties>
+								<property>
+									<name>bind.address</name>
+									<value>127.0.0.1</value>
+								</property>
+								<property>
+									<name>jgroups.stack</name>
+									<value>tcp</value>
+								</property>
+							</systemProperties>
+							<groups>jgroups</groups>
+							<reportsDirectory>${project.build.directory}/jgroups-tcp-reports</reportsDirectory>
+						</configuration>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-report-plugin</artifactId>
+						<version>2.3</version>
+						<configuration>
+							<reportsDirectory>${project.build.directory}/jgroups-tcp-reports</reportsDirectory>
+							<outputName>jgroups-tcp-report</outputName>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+		<profile>
+			<id>transaction-jbossjta</id>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<configuration>
+							<systemProperties>
+								<property>
+									<name>bind.address</name>
+									<value>127.0.0.1</value>
+								</property>
+								<property>
+									<name>jgroups.stack</name>
+									<value>udp</value>
+								</property>
+								<property>
+									<name>org.jboss.cache.test.tm</name>
+									<value>jboss-jta</value>
+								</property>
+							</systemProperties>
+							<groups>transaction</groups>
+							<reportsDirectory>${project.build.directory}/transaction-jbossjta-reports</reportsDirectory>
+						</configuration>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-report-plugin</artifactId>
+						<configuration>
+							<reportsDirectory>${project.build.directory}/transaction-jbossjta-reports</reportsDirectory>
+							<outputName>transaction-jbossjta-report</outputName>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+</project>

Added: jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-support-1.5.pom
===================================================================
--- jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-support-1.5.pom	                        (rev 0)
+++ jboss/cache/jbosscache-core/3.2.0.CR1-brew/src/jbosscache-support-1.5.pom	2009-08-17 17:18:05 UTC (rev 28591)
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.cache</groupId>
+  <artifactId>jbosscache-support</artifactId>
+  <version>1.5</version>
+  <packaging>pom</packaging>
+  <name>JBoss Cache Support Modules</name>
+  <description>Grouping of JBoss Cache support modules</description>
+  <modules>
+    <module>xslt</module>
+    <module>common</module>
+  </modules>
+  <build>
+<!-- WebDAV plugin to upload snapshots -->
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-webdav</artifactId>
+        <version>1.0-beta-2</version>
+      </extension>
+    </extensions>
+  </build>
+  <distributionManagement>
+    <repository>
+<!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+<!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+<!-- TODO : replace this with direct svn access once the svnkit providers are available -->
+      <id>repository.jboss.org</id>
+      <url>file://${maven.repository.root}</url>
+    </repository>
+    <snapshotRepository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshot Repository</name>
+      <url>dav:https://snapshots.jboss.org/maven2</url>
+    </snapshotRepository>
+  </distributionManagement>
+</project>




More information about the jboss-cvs-commits mailing list