15 lines
319 B
Groovy
15 lines
319 B
Groovy
dependencies {
|
|
compile project( ':hibernate-core' )
|
|
compile( libraries.hikaricp )
|
|
testCompile project( ':hibernate-testing' )
|
|
}
|
|
|
|
mavenPom {
|
|
name = 'Hibernate/HikariCP Integration'
|
|
description = 'Integration for HikariCP into Hibernate O/RM'
|
|
}
|
|
|
|
def osgiDescription() {
|
|
return mavenPom.description
|
|
}
|