2011-03-03 12:53:20 -05:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
2010-10-09 14:02:49 -04:00
|
|
|
|
2012-01-03 21:43:15 -05:00
|
|
|
apply plugin: org.hibernate.build.gradle.testing.matrix.MatrixTestingPlugin
|
2011-12-16 10:12:45 -05:00
|
|
|
|
|
|
|
dependencies {
|
2010-10-09 14:02:49 -04:00
|
|
|
compile( project(':hibernate-core') )
|
|
|
|
compile( libraries.dom4j )
|
|
|
|
compile( libraries.commons_annotations )
|
|
|
|
compile( libraries.jpa )
|
|
|
|
compile( libraries.jta )
|
|
|
|
compile( libraries.javassist )
|
2012-08-17 19:19:25 -04:00
|
|
|
provided( "javax.enterprise:cdi-api:1.0-SP4" )
|
2011-03-07 17:20:53 -05:00
|
|
|
testCompile( project(':hibernate-testing') )
|
2010-10-09 14:02:49 -04:00
|
|
|
testCompile( libraries.shrinkwrap_api )
|
|
|
|
testCompile( libraries.shrinkwrap )
|
|
|
|
testCompile( libraries.validation )
|
|
|
|
testRuntime( libraries.validator )
|
2012-08-17 19:19:25 -04:00
|
|
|
testCompile( "org.jboss.weld.arquillian.container:arquillian-weld-ee-embedded-1.1:1.1.2.Final" )
|
|
|
|
testCompile( "org.jboss.weld:weld-core:1.1.9.Final" )
|
|
|
|
testRuntime( "org.glassfish.web:el-impl:2.1.2-b04" )
|
|
|
|
testRuntime( "org.jboss.ejb3:jboss-ejb3-api:3.1.0" )
|
2010-10-09 14:02:49 -04:00
|
|
|
}
|
|
|
|
|
2011-12-25 20:59:09 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// JPA model-gen set up
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
2012-03-26 03:12:10 -04:00
|
|
|
aptDumpDir = file( "${buildDir}/tmp/apt" )
|
2011-12-25 20:59:09 -05:00
|
|
|
|
|
|
|
sourceSets.test {
|
|
|
|
originalJavaSrcDirs = java.srcDirs
|
2012-08-08 05:09:11 -04:00
|
|
|
ext.generatedJpaMetamodelSrcDir = file( "${buildDir}/generated-src/jpamodelgen/${name}" )
|
2011-12-25 20:59:09 -05:00
|
|
|
java.srcDir generatedJpaMetamodelSrcDir
|
|
|
|
}
|
|
|
|
task generateTestJpaMetamodelClasses(type: Compile) {
|
2011-03-09 14:15:47 -05:00
|
|
|
classpath = compileTestJava.classpath + configurations.hibernateJpaModelGenTool
|
2011-03-09 16:29:16 -05:00
|
|
|
source = sourceSets.test.originalJavaSrcDirs
|
|
|
|
destinationDir = aptDumpDir
|
2011-03-09 14:15:47 -05:00
|
|
|
options.define(
|
|
|
|
compilerArgs: [
|
|
|
|
"-proc:only",
|
|
|
|
"-processor", "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor",
|
2011-03-09 16:29:16 -05:00
|
|
|
"-s", "$sourceSets.test.generatedJpaMetamodelSrcDir.absolutePath"
|
2011-03-09 14:15:47 -05:00
|
|
|
]
|
2011-03-09 16:29:16 -05:00
|
|
|
);
|
|
|
|
outputs.dir sourceSets.test.generatedJpaMetamodelSrcDir;
|
|
|
|
doFirst {
|
|
|
|
sourceSets.test.generatedJpaMetamodelSrcDir.mkdirs()
|
|
|
|
}
|
2011-03-09 14:15:47 -05:00
|
|
|
}
|
2011-12-25 20:59:09 -05:00
|
|
|
// for the time being eat the annoying output from running the annotation processors
|
|
|
|
generateTestJpaMetamodelClasses.logging.captureStandardError(LogLevel.INFO)
|
|
|
|
compileTestJava.dependsOn generateTestJpaMetamodelClasses
|
|
|
|
compileTestJava.options.define(compilerArgs: ["-proc:none"])
|
2011-03-09 14:15:47 -05:00
|
|
|
|
2012-06-08 08:59:54 -04:00
|
|
|
|
2011-12-25 20:59:09 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
2012-06-08 08:59:54 -04:00
|
|
|
// Process 'bundle resources' for the packaging tests
|
2011-12-25 20:59:09 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
2010-10-26 05:01:39 -04:00
|
|
|
task copyBundleResources (type: Copy) {
|
2012-08-08 05:09:11 -04:00
|
|
|
ext.bundlesTargetDir = file( "${buildDir}/bundles" )
|
2010-10-26 05:01:39 -04:00
|
|
|
from file('src/test/bundles')
|
2011-03-09 16:29:16 -05:00
|
|
|
into bundlesTargetDir
|
2010-10-26 05:01:39 -04:00
|
|
|
filter(ReplaceTokens, tokens: [
|
|
|
|
buildDirName: buildDir.absolutePath,
|
|
|
|
'db.dialect': 'org.hibernate.dialect.H2Dialect',
|
|
|
|
'jdbc.driver': 'org.h2.Driver',
|
|
|
|
'jdbc.user': 'sa',
|
|
|
|
'jdbc.pass': '',
|
|
|
|
'jdbc.url': 'jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE',
|
2011-03-09 16:29:16 -05:00
|
|
|
]);
|
|
|
|
doFirst {
|
|
|
|
bundlesTargetDir.mkdirs()
|
|
|
|
}
|
2010-10-09 14:02:49 -04:00
|
|
|
}
|
2012-06-08 09:08:13 -04:00
|
|
|
processTestResources.dependsOn copyBundleResources
|
2010-10-26 08:47:51 -04:00
|
|
|
|
2012-07-12 10:33:36 -04:00
|
|
|
// create an artifact configuration composed of the test classes so that envers can access hem test classes
|
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
|
|
|
classifier = 'test'
|
2012-08-08 05:09:11 -04:00
|
|
|
from sourceSets.test.output
|
2012-07-12 10:33:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
tests
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
2012-08-08 05:09:11 -04:00
|
|
|
}
|