hibernate-orm/hibernate-c3p0/hibernate-c3p0.gradle

25 lines
664 B
Groovy
Raw Normal View History

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
dependencies {
compile project( ':hibernate-core' )
2012-08-08 05:09:11 -04:00
compile( libraries.c3p0 )
testCompile( libraries.validator ) {
// for test runtime
transitive = true
}
testCompile project( ':hibernate-testing' )
2013-01-23 18:22:03 -05:00
}
mavenPom {
name = 'Hibernate/c3p0 Integration'
description = 'Integration for c3p0 Connection pooling into Hibernate O/RM'
}
2013-12-02 21:53:19 -05:00
def osgiDescription() {
return mavenPom.description
2013-12-02 21:53:19 -05:00
}