2010-10-09 13:27:47 -05:00
|
|
|
dependencies {
|
2012-03-21 16:25:32 -06:00
|
|
|
provided( libraries.validation )
|
2012-03-09 13:34:02 -06:00
|
|
|
compile project( ':hibernate-core' )
|
2012-08-08 17:09:11 +08:00
|
|
|
compile( libraries.c3p0 )
|
2012-03-09 13:34:02 -06:00
|
|
|
|
2012-03-21 16:25:32 -06:00
|
|
|
testCompile( libraries.validator ) {
|
|
|
|
// for test runtime
|
|
|
|
transitive = true
|
|
|
|
}
|
2013-11-26 17:48:25 -06:00
|
|
|
testCompile project( ':hibernate-testing' )
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
|
|
|
|
2013-04-16 18:25:20 -05:00
|
|
|
def pomName() {
|
|
|
|
return 'Hibernate/c3p0 Integration'
|
|
|
|
}
|
|
|
|
|
|
|
|
def pomDescription() {
|
|
|
|
return 'Integration for c3p0 Connection pooling into Hibernate O/RM'
|
|
|
|
}
|
2013-12-02 20:53:19 -06:00
|
|
|
|
|
|
|
def osgiDescription() {
|
|
|
|
return pomDescription()
|
|
|
|
}
|