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

13 lines
296 B
Groovy

apply plugin: 'java'
dependencies {
provided( libraries.validation )
compile project( ':hibernate-core' )
compile "c3p0:c3p0:0.9.1"
testCompile( libraries.validator ) {
// for test runtime
transitive = true
}
testCompile project( ':hibernate-testing' )
}