19 lines
398 B
Groovy
19 lines
398 B
Groovy
dependencies {
|
|
compile project( ':hibernate-core' )
|
|
compile( libraries.proxool )
|
|
testCompile project( ':hibernate-testing' )
|
|
}
|
|
|
|
def pomName() {
|
|
return 'Hibernate/Proxool Integration'
|
|
}
|
|
|
|
def pomDescription() {
|
|
return 'Integration for Proxool Connection pooling into Hibernate O/RM'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
instruction 'Bundle-Description', 'Hibernate ORM Proxool'
|
|
}
|
|
} |