1
0
mirror of https://github.com/hibernate/hibernate-orm synced 2025-02-24 12:17:24 +00:00
2013-04-16 18:26:02 -05:00

25 lines
525 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'
}
jar {
manifest {
instruction 'Bundle-Description', 'Hibernate ORM C3P0'
}
}