Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
78ae6abad1
|
@ -60,7 +60,7 @@ libraries = [
|
||||||
|
|
||||||
// Annotations
|
// Annotations
|
||||||
commons_annotations:
|
commons_annotations:
|
||||||
'org.hibernate.common:hibernate-commons-annotations:4.0.1.Final',
|
'org.hibernate.common:hibernate-commons-annotations:4.0.1.Final@jar',
|
||||||
jandex: 'org.jboss:jandex:1.0.3.Final',
|
jandex: 'org.jboss:jandex:1.0.3.Final',
|
||||||
classmate: 'com.fasterxml:classmate:0.5.4',
|
classmate: 'com.fasterxml:classmate:0.5.4',
|
||||||
|
|
||||||
|
@ -145,10 +145,6 @@ subprojects { subProject ->
|
||||||
|
|
||||||
}
|
}
|
||||||
toolsJar = file("${System.getProperty('java.home')}/../lib/tools.jar")
|
toolsJar = file("${System.getProperty('java.home')}/../lib/tools.jar")
|
||||||
if(!toolsJar.exists()){
|
|
||||||
toolsJar = file("${System.getProperty('java.home')}/../Classes/classes.jar")
|
|
||||||
}
|
|
||||||
|
|
||||||
// appropriately inject the common dependencies into each sub-project
|
// appropriately inject the common dependencies into each sub-project
|
||||||
dependencies {
|
dependencies {
|
||||||
compile( libraries.logging )
|
compile( libraries.logging )
|
||||||
|
|
|
@ -5,12 +5,8 @@ apply plugin: org.hibernate.build.gradle.testing.matrix.MatrixTestingPlugin
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile( libraries.jta )
|
compile( libraries.jta )
|
||||||
compile( libraries.dom4j ) {
|
compile( libraries.dom4j )
|
||||||
transitive = false
|
compile( libraries.commons_annotations )
|
||||||
}
|
|
||||||
compile( libraries.commons_annotations ) {
|
|
||||||
transitive = false
|
|
||||||
}
|
|
||||||
compile( libraries.jpa )
|
compile( libraries.jpa )
|
||||||
compile( libraries.javassist )
|
compile( libraries.javassist )
|
||||||
compile( libraries.antlr )
|
compile( libraries.antlr )
|
||||||
|
|
|
@ -6,9 +6,7 @@ dependencies {
|
||||||
compile( project( ':hibernate-entitymanager' ) )
|
compile( project( ':hibernate-entitymanager' ) )
|
||||||
compile( libraries.commons_annotations )
|
compile( libraries.commons_annotations )
|
||||||
provided( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] )
|
provided( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] )
|
||||||
compile( libraries.dom4j ) {
|
compile( libraries.dom4j )
|
||||||
trasitive = false
|
|
||||||
}
|
|
||||||
provided( libraries.ant )
|
provided( libraries.ant )
|
||||||
testCompile( libraries.junit )
|
testCompile( libraries.junit )
|
||||||
testCompile( project(':hibernate-testing') )
|
testCompile( project(':hibernate-testing') )
|
||||||
|
|
Loading…
Reference in New Issue