[hibernate-commits] Hibernate SVN: r17719 - in core/branches/gradle: hibernate-annotations and 11 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Oct 13 10:39:59 EDT 2009


Author: steve.ebersole at jboss.com
Date: 2009-10-13 10:39:58 -0400 (Tue, 13 Oct 2009)
New Revision: 17719

Added:
   core/branches/gradle/hibernate-c3p0/build.gradle
   core/branches/gradle/hibernate-ehcache/build.gradle
   core/branches/gradle/hibernate-infinispan/build.gradle
   core/branches/gradle/hibernate-jbosscache/build.gradle
   core/branches/gradle/hibernate-jmx/build.gradle
   core/branches/gradle/hibernate-oscache/build.gradle
   core/branches/gradle/hibernate-proxool/build.gradle
   core/branches/gradle/hibernate-swarmcache/build.gradle
Removed:
   core/branches/gradle/hibernate-c3p0/pom.xml
   core/branches/gradle/hibernate-ehcache/pom.xml
   core/branches/gradle/hibernate-jmx/pom.xml
   core/branches/gradle/hibernate-oscache/pom.xml
   core/branches/gradle/hibernate-proxool/pom.xml
   core/branches/gradle/hibernate-swarmcache/pom.xml
Modified:
   core/branches/gradle/build.gradle
   core/branches/gradle/hibernate-annotations/build.gradle
   core/branches/gradle/hibernate-core/build.gradle
   core/branches/gradle/hibernate-entitymanager/build.gradle
   core/branches/gradle/hibernate-envers/build.gradle
   core/branches/gradle/settings.gradle
Log:
expanded build

Modified: core/branches/gradle/build.gradle
===================================================================
--- core/branches/gradle/build.gradle	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -8,6 +8,13 @@
         mavenRepo name: "artifactory", urls: "http://localhost:8081/artifactory/repo/"
     }
 
+    configurations {
+        provided {
+            // todo : need to make sure these are non-exported
+            description = 'Non-exported compile-time dependencies.'
+        }
+    }
+
     dependencies {
         slf4jVersion = '1.5.8'
         dom4jVersion = '1.6.1'
@@ -18,18 +25,28 @@
         javassistVersion = '3.9.0.GA'
         cglibVersion = '2.2'
 
+        junitVersion = '3.8.2'
+        testngVersion = '5.8'
+
+        hsqldbVersion = '1.8.0.2'
+        h2Version = '1.0.79'
+
         compile(
                 group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
         )
         testCompile(
-                [group: 'junit', name: 'junit', version: '3.8.2'],
+                [group: 'junit', name: 'junit', version: junitVersion],
                 [group: 'org.slf4j', name: 'jcl-over-slf4j', version: slf4jVersion],
-                [group: 'org.slf4j', name: 'slf4j-log4j12', version: slf4jVersion],
-                [group: 'commons-logging', name: 'commons-logging', version: '99.0-does-not-exist'],
-                [group: 'commons-logging', name: 'commons-logging-api', version: '99.0-does-not-exist']
+                [group: 'org.slf4j', name: 'slf4j-log4j12', version: slf4jVersion]
         )
     }
 
+    sourceSets {
+        main {
+            compileClasspath = compileClasspath + configurations.provided
+        }
+    }
+
     group = 'org.hibernate.gradlePoC'
     version = '1.0.0-SNAPSHOT'
     manifest.mainAttributes(

Modified: core/branches/gradle/hibernate-annotations/build.gradle
===================================================================
--- core/branches/gradle/hibernate-annotations/build.gradle	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-annotations/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,10 +1,11 @@
 dependencies {
     compile (
-            project(':hibernate-core'),
+            this.project(':hibernate-core').sourceSets.main.classes,
             [group: 'dom4j', name: 'dom4j', version: dom4jVersion],
             [group: 'org.hibernate', name: 'hibernate-commons-annotations', version: annotationsCommonsVersion],
             [group: 'org.hibernate.java-persistence', name: 'jpa-api', version: jpaVersion],
-            // need to be 'optional'/'provided'
+    )
+    provided (
             [group: 'javax.validation', name: 'validation-api', version: '1.0.CR4']
     )
     testCompile (

Added: core/branches/gradle/hibernate-c3p0/build.gradle
===================================================================
--- core/branches/gradle/hibernate-c3p0/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-c3p0/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,8 @@
+dependencies {
+    c3p0Version = '0.9.1'
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'c3p0', name: 'c3p0', version: c3p0Version]
+    )
+}
\ No newline at end of file

Deleted: core/branches/gradle/hibernate-c3p0/pom.xml
===================================================================
--- core/branches/gradle/hibernate-c3p0/pom.xml	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-c3p0/pom.xml	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,31 +0,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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.5.0-SNAPSHOT</version>
-        <relativePath>../parent/pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.hibernate</groupId>
-    <artifactId>hibernate-c3p0</artifactId>
-    <packaging>jar</packaging>
-
-    <name>Hibernate C3P0 ConnectionProvider</name>
-    <description>C3P0-based implementation of the Hibernate ConnectionProvder contract</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-core</artifactId>
-            <version>${version}</version>
-        </dependency>
-        <dependency>
-            <groupId>c3p0</groupId>
-            <artifactId>c3p0</artifactId>
-            <version>0.9.1</version>
-        </dependency>
-    </dependencies>
-</project>

Modified: core/branches/gradle/hibernate-core/build.gradle
===================================================================
--- core/branches/gradle/hibernate-core/build.gradle	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-core/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,5 +1,7 @@
 configurations {
-    antAntlr
+    antAntlr {
+        description = 'Classpath used to define and execute the Antlr Ant task.'
+    }
 }
 
 dependencies {
@@ -8,8 +10,9 @@
     compile (
             [group: 'antlr', name: 'antlr', version: antlrVersion],
             [group: 'commons-collections', name: 'commons-collections', version: '3.1'],
-            [group: 'dom4j', name: 'dom4j', version: dom4jVersion],
-            // need to be 'optional'/'provided'
+            [group: 'dom4j', name: 'dom4j', version: dom4jVersion]
+    )
+    provided(
             [group: 'javassist', name: 'javassist', version: javassistVersion],
             [group: 'cglib', name: 'cglib', version: cglibVersion, transitive: true],
             [group: 'ant', name: 'ant', version: antVersion],
@@ -84,4 +87,5 @@
 }
 
 compileJava.dependsOn antlrGeneratedSourceFiles.builtBy
-sourceSets.main.java.srcDir( antlrGeneratedSourceFiles )
\ No newline at end of file
+sourceSets.main.java.srcDir( antlrGeneratedSourceFiles )
+

Added: core/branches/gradle/hibernate-ehcache/build.gradle
===================================================================
--- core/branches/gradle/hibernate-ehcache/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-ehcache/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,16 @@
+dependencies {
+    ehcacheVersion = '1.5.0'
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'net.sf.ehcache', name: 'ehcache', version: ehcacheVersion]
+    )
+    testCompile (
+            this.project(':hibernate-testing').sourceSets.main.classes,
+    )
+    testRuntime (
+            [group: 'hsqldb', name: 'hsqldb', version: hsqldbVersion],
+            [group: 'javassist', name: 'javassist', version: javassistVersion],
+            [group: 'cglib', name: 'cglib', version: cglibVersion]
+    )
+}
\ No newline at end of file

Deleted: core/branches/gradle/hibernate-ehcache/pom.xml
===================================================================
--- core/branches/gradle/hibernate-ehcache/pom.xml	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-ehcache/pom.xml	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,53 +0,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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.5.0-SNAPSHOT</version>
-        <relativePath>../parent/pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.hibernate</groupId>
-    <artifactId>hibernate-ehcache</artifactId>
-    <packaging>jar</packaging>
-
-    <name>Hibernate Ehcache Integration</name>
-    <description>Integration of Hibernate with Ehcache</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-core</artifactId>
-            <version>${version}</version>
-        </dependency>
-        <dependency>
-            <groupId>net.sf.ehcache</groupId>
-            <artifactId>ehcache</artifactId>
-            <version>1.5.0</version>
-        </dependency>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-testing</artifactId>
-            <version>${version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>hsqldb</groupId>
-            <artifactId>hsqldb</artifactId>
-            <version>1.8.0.2</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>cglib</groupId>
-            <artifactId>cglib</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>javassist</groupId>
-            <artifactId>javassist</artifactId>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-</project>

Modified: core/branches/gradle/hibernate-entitymanager/build.gradle
===================================================================
--- core/branches/gradle/hibernate-entitymanager/build.gradle	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-entitymanager/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,7 +1,7 @@
 dependencies {
     compile(
-            project(':hibernate-core'),
-            project(':hibernate-annotations'),
+            this.project(':hibernate-core').sourceSets.main.classes,
+            this.project(':hibernate-annotations').sourceSets.main.classes,
             [group: 'dom4j', name: 'dom4j', version: dom4jVersion],
             [group: 'org.hibernate', name: 'hibernate-commons-annotations', version: annotationsCommonsVersion],
             [group: 'org.hibernate.java-persistence', name: 'jpa-api', version: jpaVersion],

Modified: core/branches/gradle/hibernate-envers/build.gradle
===================================================================
--- core/branches/gradle/hibernate-envers/build.gradle	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-envers/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,19 +1,23 @@
 dependencies {
+    hibernateToolsVersion = '3.2.0.ga'
+
     compile (
-            project(':hibernate-core'),
-            project(':hibernate-annotations'),
-            project(':hibernate-entitymanager'),
-            'org.hibernate:hibernate-tools:3.2.0.ga',
+            this.project(':hibernate-core').sourceSets.main.classes,
+            this.project(':hibernate-annotations').sourceSets.main.classes,
+            this.project(':hibernate-entitymanager').sourceSets.main.classes,
+            [group: 'org.hibernate', name: 'hibernate-tools', version: hibernateToolsVersion]
     )
     runtime(
-            'ant:ant:1.6.5'
+            [group: 'ant', name: 'ant', version: '1.6.5']
     )
     testCompile (
-            'org.testng:testng:5.8',
-            'com.h2database:h2:1.0.79',
-            'javassist:javassist:3.9.0.GA',
-            'cglib:cglib:2.2'
+            [group: 'org.testng', name: 'testng', version: testngVersion]
     )
+    testRuntime (
+            [group: 'com.h2database', name: 'h2', version: h2Version],
+            [group: 'javassist', name: 'javassist', javassistVersion],
+            [group: 'cglib', name: 'cglib', version: cglibVersion]
+    )
 }
 
 sourceTarget = "1.5"

Added: core/branches/gradle/hibernate-infinispan/build.gradle
===================================================================
--- core/branches/gradle/hibernate-infinispan/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-infinispan/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,24 @@
+// todo : need to account for skipUnitTests from pom.xml
+// todo : need to account for groups.bind_addr from pom.xml
+// todo : need to account for surefire system-properties from pom.xml
+
+dependencies {
+    infinispanVersion = '4.0.0-SNAPSHOT'
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'org.infinispan', name: 'infinispan-core', version: infinispanVersion]
+    )
+    testCompile(
+            this.project(':hibernate-testing').sourceSets.main.classes,
+            [group: 'org.infinispan', name: 'infinispan-core', version: infinispanVersion, classifier: 'test-jar']
+    )
+    testRuntime (
+            [group: 'javassist', name: 'javassist', version: javassistVersion],
+            [group: 'cglib', name: 'cglib', version: cglibVersion],
+            [group: 'hsqldb', name: 'hsqldb', version: hsqldbVersion]
+    )
+}
+
+sourceTarget = "1.5"
+sourceCompatibility = "1.5"
\ No newline at end of file

Added: core/branches/gradle/hibernate-jbosscache/build.gradle
===================================================================
--- core/branches/gradle/hibernate-jbosscache/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-jbosscache/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,23 @@
+// todo : need to account for skipUnitTests from pom.xml
+// todo : need to account for groups.bind_addr from pom.xml
+// todo : need to account for surefire system-properties from pom.xml
+
+dependencies {
+    jbcVersion = '3.2.1.GA'
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'org.jboss.cache', name: 'jbosscache-core', version: jbcVersion]
+    )
+    testCompile(
+            this.project(':hibernate-testing').sourceSets.main.classes
+    )
+    testRuntime (
+            [group: 'javassist', name: 'javassist', version: javassistVersion],
+            [group: 'cglib', name: 'cglib', version: cglibVersion],
+            [group: 'hsqldb', name: 'hsqldb', version: hsqldbVersion]
+    )
+}
+
+sourceTarget = "1.5"
+sourceCompatibility = "1.5"
\ No newline at end of file

Added: core/branches/gradle/hibernate-jmx/build.gradle
===================================================================
--- core/branches/gradle/hibernate-jmx/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-jmx/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,5 @@
+dependencies {
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes
+    )
+}
\ No newline at end of file

Deleted: core/branches/gradle/hibernate-jmx/pom.xml
===================================================================
--- core/branches/gradle/hibernate-jmx/pom.xml	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-jmx/pom.xml	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,50 +0,0 @@
-<?xml version="1.0"?>
-<!--
-  ~ Hibernate, Relational Persistence for Idiomatic Java
-  ~
-  ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
-  ~ indicated by the @author tags or express copyright attribution
-  ~ statements applied by the authors.  All third-party contributions are
-  ~ distributed under license by Red Hat Middleware LLC.
-  ~
-  ~ This copyrighted material is made available to anyone wishing to use, modify,
-  ~ copy, or redistribute it subject to the terms and conditions of the GNU
-  ~ Lesser General Public License, as published by the Free Software Foundation.
-  ~
-  ~ This program is distributed in the hope that it will be useful,
-  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-  ~ or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
-  ~ for more details.
-  ~
-  ~ You should have received a copy of the GNU Lesser General Public License
-  ~ along with this distribution; if not, write to:
-  ~ Free Software Foundation, Inc.
-  ~ 51 Franklin Street, Fifth Floor
-  ~ Boston, MA  02110-1301  USA
-  -->
-<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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.5.0-SNAPSHOT</version>
-        <relativePath>../parent/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.hibernate</groupId>
-    <artifactId>hibernate-jmx</artifactId>
-    <packaging>jar</packaging>
-
-    <name>Hibernate JMX Module</name>
-    <description>Defines Hibernate JMX capabilities</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-core</artifactId>
-            <version>${version}</version>
-        </dependency>
-    </dependencies>
-</project>

Added: core/branches/gradle/hibernate-oscache/build.gradle
===================================================================
--- core/branches/gradle/hibernate-oscache/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-oscache/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,8 @@
+dependencies {
+    oscacheVersion = '2.1';
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'opensymphony', name: 'oscache', version: oscacheVersion]
+    )
+}
\ No newline at end of file

Deleted: core/branches/gradle/hibernate-oscache/pom.xml
===================================================================
--- core/branches/gradle/hibernate-oscache/pom.xml	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-oscache/pom.xml	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,31 +0,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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.5.0-SNAPSHOT</version>
-        <relativePath>../parent/pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.hibernate</groupId>
-    <artifactId>hibernate-oscache</artifactId>
-    <packaging>jar</packaging>
-
-    <name>Hibernate OSCache Integration</name>
-    <description>Integration of Hibernate with OSCache</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-core</artifactId>
-            <version>${version}</version>
-        </dependency>
-        <dependency>
-            <groupId>opensymphony</groupId>
-            <artifactId>oscache</artifactId>
-            <version>2.1</version>
-        </dependency>
-    </dependencies>
-</project>

Added: core/branches/gradle/hibernate-proxool/build.gradle
===================================================================
--- core/branches/gradle/hibernate-proxool/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-proxool/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,8 @@
+dependencies {
+    proxoolVersion = '0.8.3'
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'proxool', name: 'proxool', version: proxoolVersion]
+    )
+}
\ No newline at end of file

Deleted: core/branches/gradle/hibernate-proxool/pom.xml
===================================================================
--- core/branches/gradle/hibernate-proxool/pom.xml	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-proxool/pom.xml	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,31 +0,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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.5.0-SNAPSHOT</version>
-        <relativePath>../parent/pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.hibernate</groupId>
-    <artifactId>hibernate-proxool</artifactId>
-    <packaging>jar</packaging>
-
-    <name>Hibernate Proxool ConnectionProvider</name>
-    <description>Proxool-based implementation of the Hibernate ConnectionProvder contract</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-core</artifactId>
-            <version>${version}</version>
-        </dependency>
-        <dependency>
-            <groupId>proxool</groupId>
-            <artifactId>proxool</artifactId>
-            <version>0.8.3</version>
-        </dependency>
-    </dependencies>
-</project>

Added: core/branches/gradle/hibernate-swarmcache/build.gradle
===================================================================
--- core/branches/gradle/hibernate-swarmcache/build.gradle	                        (rev 0)
+++ core/branches/gradle/hibernate-swarmcache/build.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -0,0 +1,8 @@
+dependencies {
+    swarmcacheVersion = '0.8.3'
+
+    compile (
+            this.project(':hibernate-core').sourceSets.main.classes,
+            [group: 'swarmcache', name: 'swarmcache', version: swarmcacheVersion]
+    )
+}
\ No newline at end of file

Deleted: core/branches/gradle/hibernate-swarmcache/pom.xml
===================================================================
--- core/branches/gradle/hibernate-swarmcache/pom.xml	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/hibernate-swarmcache/pom.xml	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,31 +0,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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.5.0-SNAPSHOT</version>
-        <relativePath>../parent/pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.hibernate</groupId>
-    <artifactId>hibernate-swarmcache</artifactId>
-    <packaging>jar</packaging>
-
-    <name>Hibernate SwarmCache Integration</name>
-    <description>Integration of Hibernate with SwarmCache</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>${groupId}</groupId>
-            <artifactId>hibernate-core</artifactId>
-            <version>${version}</version>
-        </dependency>
-        <dependency>
-            <groupId>swarmcache</groupId>
-            <artifactId>swarmcache</artifactId>
-            <version>1.0RC2</version>
-        </dependency>
-    </dependencies>
-</project>

Modified: core/branches/gradle/settings.gradle
===================================================================
--- core/branches/gradle/settings.gradle	2009-10-13 14:17:46 UTC (rev 17718)
+++ core/branches/gradle/settings.gradle	2009-10-13 14:39:58 UTC (rev 17719)
@@ -1,20 +1,15 @@
-//include (
-//        "hibernate-core",
-//        "hibernate-envers",
-//        "hibernate-annotations",
-//        "hibernate-entitymanager",
-//        "hibernate-c3p0",
-//        "hibernate-proxool",
-//        "hibernate-ehcache",
-//        "hibernate-infinispan",
-//        "hibernate-jbosscache",
-//        "hibernate-oscache",
-//        "hibernate-swarmcache",
-//        "hibernate-jmx"
-//)
 include (
-        "hibernate-core",
-        "hibernate-envers",
-        "hibernate-annotations",
-        "hibernate-entitymanager"
-)
\ No newline at end of file
+        'hibernate-core',
+        'hibernate-envers',
+        'hibernate-annotations',
+        'hibernate-entitymanager',
+        'hibernate-c3p0',
+        'hibernate-proxool',
+        'hibernate-ehcache',
+        'hibernate-infinispan',
+        'hibernate-jbosscache',
+        'hibernate-oscache',
+        'hibernate-swarmcache',
+        'hibernate-jmx',
+        'hibernate-testing'
+)



More information about the hibernate-commits mailing list