2010-10-09 14:24:27 -04:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile( project( ':hibernate-core' ) )
|
|
|
|
compile( project( ':hibernate-entitymanager' ) )
|
|
|
|
compile( libraries.commons_annotations )
|
2011-08-21 11:53:21 -04:00
|
|
|
provided( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] )
|
2010-10-09 14:24:27 -04:00
|
|
|
compile( libraries.dom4j ) {
|
|
|
|
trasitive = false
|
|
|
|
}
|
2011-08-21 11:53:21 -04:00
|
|
|
provided( libraries.ant )
|
2011-04-01 15:39:49 -04:00
|
|
|
testCompile( libraries.junit )
|
2011-03-07 17:20:53 -05:00
|
|
|
testCompile( project(':hibernate-testing') )
|
2010-10-09 14:24:27 -04:00
|
|
|
testCompile( libraries.jpa )
|
|
|
|
testRuntime( libraries.h2 )
|
|
|
|
testRuntime( libraries.javassist )
|
|
|
|
}
|
|
|
|
|
2011-04-01 15:39:49 -04:00
|
|
|
sourceSets {
|
|
|
|
test {
|
|
|
|
// resources inherently exclude sources
|
|
|
|
resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
|
|
|
}
|
2010-10-09 14:24:27 -04:00
|
|
|
}
|
|
|
|
}
|