[hibernate-commits] Hibernate SVN: r19807 - core/branches/gradle2/hibernate-c3p0.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Jun 23 23:40:54 EDT 2010


Author: steve.ebersole at jboss.com
Date: 2010-06-23 23:40:53 -0400 (Wed, 23 Jun 2010)
New Revision: 19807

Removed:
   core/branches/gradle2/hibernate-c3p0/pom.xml
Modified:
   core/branches/gradle2/hibernate-c3p0/hibernate-c3p0.gradle
Log:
working c3p0 module

Modified: core/branches/gradle2/hibernate-c3p0/hibernate-c3p0.gradle
===================================================================
--- core/branches/gradle2/hibernate-c3p0/hibernate-c3p0.gradle	2010-06-23 22:33:43 UTC (rev 19806)
+++ core/branches/gradle2/hibernate-c3p0/hibernate-c3p0.gradle	2010-06-24 03:40:53 UTC (rev 19807)
@@ -1,8 +1,6 @@
-dependencies {
-    c3p0Version = '0.9.1'
+apply plugin: 'java'
 
-    compile (
-            project(':hibernate-core'),
-            [group: 'c3p0', name: 'c3p0', version: c3p0Version]
-    )
+dependencies {
+    compile( project( ':hibernate-core' ) )
+    compile( [group: 'c3p0', name: 'c3p0', version: '0.9.1'] )
 }
\ No newline at end of file

Deleted: core/branches/gradle2/hibernate-c3p0/pom.xml
===================================================================
--- core/branches/gradle2/hibernate-c3p0/pom.xml	2010-06-23 22:33:43 UTC (rev 19806)
+++ core/branches/gradle2/hibernate-c3p0/pom.xml	2010-06-24 03:40:53 UTC (rev 19807)
@@ -1,32 +0,0 @@
-<?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.hibernate</groupId>
-        <artifactId>hibernate-parent</artifactId>
-        <version>3.6.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>



More information about the hibernate-commits mailing list