hibernate-orm/hibernate-envers/hibernate-envers.gradle

36 lines
1.0 KiB
Groovy
Raw Normal View History

apply plugin: 'java'
2011-10-18 00:29:45 -04:00
apply plugin: org.hibernate.gradle.testing.matrix.MatrixTestingPlugin
dependencies {
compile( project( ':hibernate-core' ) )
compile( project( ':hibernate-entitymanager' ) )
compile( libraries.commons_annotations )
provided( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] )
compile( libraries.dom4j ) {
trasitive = false
}
provided( libraries.ant )
testCompile( libraries.junit )
2011-03-07 17:20:53 -05:00
testCompile( project(':hibernate-testing') )
testCompile( libraries.jpa )
testRuntime( libraries.h2 )
testRuntime( libraries.javassist )
}
sourceSets {
2011-10-18 00:29:45 -04:00
matrix {
java {
srcDir 'src/matrix/java'
}
resources {
2011-10-18 00:29:45 -04:00
srcDir 'src/matrix/resources'
srcDir 'src/matrix/java'
}
}
2011-10-18 00:29:45 -04:00
}
2011-11-20 21:16:30 -05:00
compileMatrixJava.options.define(compilerArgs: ["-proc:none", "-encoding", "UTF-8"])
2011-10-18 00:29:45 -04:00
ideaModule {
testSourceDirs += file( 'src/matrix/java')
testSourceDirs += file( 'src/matrix/resources')
2011-11-20 21:16:30 -05:00
}