25 lines
525 B
Groovy
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'
|
|
}
|
|
} |