Skip to content

Commit

Permalink
HHH-5616 - Switch to Gradle for builds .. c3p0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Oct 11, 2010
1 parent f83af2d commit 328b911
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 32 deletions.
32 changes: 0 additions & 32 deletions connection-proxool/pom.xml

This file was deleted.

1 change: 1 addition & 0 deletions hibernate-c3p0/hibernate-c3p0.gradle
Expand Up @@ -3,4 +3,5 @@ apply plugin: 'java'
dependencies { dependencies {
compile( project( ':hibernate-core' ) ) compile( project( ':hibernate-core' ) )
compile( [group: 'c3p0', name: 'c3p0', version: '0.9.1'] ) compile( [group: 'c3p0', name: 'c3p0', version: '0.9.1'] )
testCompile( project(':hibernate-core').sourceSets.test.classes )
} }
7 changes: 7 additions & 0 deletions hibernate-proxool/hibernate-proxool.gradle
@@ -0,0 +1,7 @@
apply plugin: 'java'

dependencies {
compile( project( ':hibernate-core' ) )
compile( [group: 'proxool', name: 'proxool', version: '0.8.3'] )
testCompile( project(':hibernate-core').sourceSets.test.classes )
}
1 change: 1 addition & 0 deletions settings.gradle
Expand Up @@ -3,6 +3,7 @@ include 'hibernate-entitymanager'
include 'hibernate-envers' include 'hibernate-envers'


include 'hibernate-c3p0' include 'hibernate-c3p0'
include 'hibernate-proxool'




rootProject.children.each { project -> rootProject.children.each { project ->
Expand Down

0 comments on commit 328b911

Please sign in to comment.