[hibernate-commits] Hibernate SVN: r19813 - core/branches/gradle2/hibernate-proxool.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Jun 24 00:15:15 EDT 2010


Author: steve.ebersole at jboss.com
Date: 2010-06-24 00:15:14 -0400 (Thu, 24 Jun 2010)
New Revision: 19813

Removed:
   core/branches/gradle2/hibernate-proxool/pom.xml
Modified:
   core/branches/gradle2/hibernate-proxool/hibernate-proxool.gradle
Log:
converted proxool module

Modified: core/branches/gradle2/hibernate-proxool/hibernate-proxool.gradle
===================================================================
--- core/branches/gradle2/hibernate-proxool/hibernate-proxool.gradle	2010-06-24 04:12:17 UTC (rev 19812)
+++ core/branches/gradle2/hibernate-proxool/hibernate-proxool.gradle	2010-06-24 04:15:14 UTC (rev 19813)
@@ -1,8 +1,4 @@
 dependencies {
-    proxoolVersion = '0.8.3'
-
-    compile (
-            project(':hibernate-core'),
-            [group: 'proxool', name: 'proxool', version: proxoolVersion]
-    )
+    compile( project( ':hibernate-core' ) )
+    compile( [group: 'proxool', name: 'proxool', version: '0.8.3'] )
 }
\ No newline at end of file

Deleted: core/branches/gradle2/hibernate-proxool/pom.xml
===================================================================
--- core/branches/gradle2/hibernate-proxool/pom.xml	2010-06-24 04:12:17 UTC (rev 19812)
+++ core/branches/gradle2/hibernate-proxool/pom.xml	2010-06-24 04:15:14 UTC (rev 19813)
@@ -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-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>



More information about the hibernate-commits mailing list