mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-18 00:55:16 +00:00
HHH-12190 - General tidying of Gradle scripts
- applied to new Vibur module
This commit is contained in:
parent
644c74d470
commit
04aaf6cf55
@ -4,45 +4,17 @@
|
|||||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
* 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>.
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
||||||
|
|
||||||
|
description = 'Integration for Vibur Connection pooling as a Hibernate ORM ConnectionProvider'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project( ':hibernate-core' )
|
compile project( ':hibernate-core' )
|
||||||
compile( libraries.vibur )
|
compile( libraries.vibur )
|
||||||
testCompile( group: 'org.vibur', name: 'vibur-dbcp', version: '21.2', classifier: 'tests' )
|
testCompile( 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2' )
|
||||||
testCompile( group: 'com.googlecode.concurrentlinkedhashmap', name: 'concurrentlinkedhashmap-lru', version: '1.4.2' )
|
|
||||||
testCompile project( ':hibernate-testing' )
|
testCompile project( ':hibernate-testing' )
|
||||||
testCompile( libraries.mockito )
|
testCompile( libraries.mockito )
|
||||||
|
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
// Java 9 ftw!
|
|
||||||
if ( JavaVersion.current().isJava9Compatible() ) {
|
|
||||||
// The JDK used to run Gradle is Java 9+, and we assume that that is the same
|
|
||||||
// JDK for executing tasks
|
|
||||||
compile( 'com.sun.xml.bind:jaxb-impl:2.2.11' )
|
|
||||||
compile( 'org.glassfish.jaxb:jaxb-xjc:2.2.11' )
|
|
||||||
compile( 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' )
|
|
||||||
compile( 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.11.0' )
|
|
||||||
compile( 'javax:javaee-api:7.0' )
|
|
||||||
|
|
||||||
testCompile( 'com.sun.xml.bind:jaxb-impl:2.2.11' )
|
|
||||||
testCompile( 'org.glassfish.jaxb:jaxb-xjc:2.2.11' )
|
|
||||||
testCompile( 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' )
|
|
||||||
testCompile( 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.11.0' )
|
|
||||||
testCompile( 'javax:javaee-api:7.0' )
|
|
||||||
|
|
||||||
testRuntime( 'com.sun.xml.bind:jaxb-impl:2.2.11' )
|
|
||||||
testRuntime( 'org.glassfish.jaxb:jaxb-xjc:2.2.11' )
|
|
||||||
testRuntime( 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' )
|
|
||||||
testRuntime( 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.11.0' )
|
|
||||||
testRuntime( 'javax:javaee-api:7.0' )
|
|
||||||
}
|
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mavenPom {
|
|
||||||
name = 'Hibernate/ViburDBCP Integration'
|
|
||||||
description = 'Integration for ViburDBCP into Hibernate O/RM'
|
|
||||||
}
|
|
||||||
|
|
||||||
def osgiDescription() {
|
|
||||||
return mavenPom.description
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user