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

23 lines
484 B
Groovy

dependencies {
provided( libraries.validation )
compile project( ':hibernate-core' )
compile( libraries.c3p0 )
testCompile( libraries.validator ) {
// for test runtime
transitive = true
}
testCompile project( ':hibernate-testing' )
}
def pomName() {
return 'Hibernate/c3p0 Integration'
}
def pomDescription() {
return 'Integration for c3p0 Connection pooling into Hibernate O/RM'
}
def osgiDescription() {
return pomDescription()
}