hibernate-orm/hibernate-c3p0/hibernate-c3p0.gradle

22 lines
447 B
Groovy
Raw Normal View History

dependencies {
compile project( ':hibernate-core' )
2012-08-08 05:09:11 -04:00
compile( libraries.c3p0 )
testCompile( libraries.validator ) {
// for test runtime
transitive = true
}
testCompile project( ':hibernate-testing' )
2013-01-23 18:22:03 -05:00
}
def pomName() {
return 'Hibernate/c3p0 Integration'
}
def pomDescription() {
return 'Integration for c3p0 Connection pooling into Hibernate O/RM'
}
2013-12-02 21:53:19 -05:00
def osgiDescription() {
return pomDescription()
}