hibernate-orm/hibernate-osgi/hibernate-osgi.gradle

207 lines
6.8 KiB
Groovy
Raw Normal View History

configurations {
osgiRuntime {
// Ignore the transitive dependencies.
transitive = false
}
osgiRuntimeBnd {
// Ignore the transitive dependencies.
transitive = false
}
}
sourceSets {
testClientBundle
}
sourceSets.test {
compileClasspath += sourceSets.testClientBundle.output
runtimeClasspath += sourceSets.testClientBundle.output
}
test {
// for now, always disable!!
enabled = false
}
if ( project.properties.java6Home == null ) {
// hibernate-osgi *must* be run using Java 6 or 7. So disable its tests if
// java6Home is not available
test.enabled = false
}
else {
compileTestJava {
options.fork = true
options.forkOptions.executable = project.properties.java6Home.javacExecutable
options.bootClasspath = project.properties.java6Home.runtimeJar.absolutePath
}
compileTestClientBundleJava {
options.fork = true
options.forkOptions.executable = project.properties.java6Home.javacExecutable
options.bootClasspath = project.properties.java6Home.runtimeJar.absolutePath
}
test {
executable = project.properties.java6Home
maxHeapSize = '2G'
jvmArgs += ['-XX:MaxPermGen=512M']
}
}
2013-01-23 18:22:03 -05:00
dependencies {
compile( project( ':hibernate-core' ) )
compile( project( ':hibernate-entitymanager' ) )
// MUST use 4.3.1! 4.3.0 was compiled with "-target jsr14".
// http://blog.osgi.org/2012/10/43-companion-code-for-java-7.html
compile( "org.osgi:org.osgi.core:4.3.1" )
compile( "org.osgi:org.osgi.compendium:4.3.1" )
testCompile( libraries.shrinkwrap_api )
testCompile( libraries.shrinkwrap )
testCompile( "org.jboss.arquillian.junit:arquillian-junit-container:1.0.3.Final" )
testCompile( "org.jboss.osgi.metadata:jbosgi-metadata:3.0.0.CR1" )
testRuntime( "org.jboss.arquillian.container:arquillian-osgi-felix:2.0.0.CR4" )
testRuntime( "org.apache.felix:org.apache.felix.framework:4.0.3" )
testRuntime( "org.apache.felix:org.apache.felix.main:4.0.3" )
testRuntime( libraries.slf4j_api );
testRuntime( libraries.slf4j_log4j );
2015-03-05 09:31:27 -05:00
testRuntime( "org.jboss.logmanager:jboss-logmanager:2.0.0.Beta1" )
// Local copies of all jars needed fur the OSGi runtime. Ignore the transitive dependencies.
// ORDER DEPENDENT!!!
osgiRuntime( "org.jboss.arquillian.osgi:arquillian-osgi-bundle:1.0.3.Final" )
osgiRuntime( libraries.jpa )
osgiRuntime( "org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.2_spec:1.0.0.Alpha1" )
osgiRuntime( libraries.jta )
osgiRuntime( "com.h2database:h2:1.3.170" )
osgiRuntime( "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5" )
osgiRuntime( libraries.javassist )
osgiRuntime( "org.apache.servicemix.specs:org.apache.servicemix.specs.stax-api-1.2:2.2.0" )
osgiRuntime( "org.apache.servicemix.bundles:org.apache.servicemix.bundles.dom4j:1.6.1_5" )
osgiRuntime( libraries.commons_annotations )
osgiRuntime( libraries.classmate )
osgiRuntime( "org.apache.logging.log4j:log4j-api:2.0" )
osgiRuntime( libraries.logging )
osgiRuntime( libraries.woodstox )
osgiRuntime( 'org.codehaus.woodstox:stax2-api:3.1.4' )
// needed for BND
osgiRuntimeBnd( libraries.jandex )
osgiRuntimeBnd( "javax.enterprise:cdi-api:1.1" )
osgiRuntimeBnd( "javax.el:el-api:2.2" )
testClientBundleCompile( project( ':hibernate-core' ) )
testClientBundleCompile( project( ':hibernate-entitymanager' ) )
// MUST use 4.3.1! 4.3.0 was compiled with "-target jsr14".
// http://blog.osgi.org/2012/10/43-companion-code-for-java-7.html
testClientBundleCompile( "org.osgi:org.osgi.core:4.3.1" )
2013-01-23 18:22:03 -05:00
}
mavenPom {
name = 'Hibernate OSGi Support'
description = 'Support for running Hibernate O/RM in OSGi environments'
}
2013-12-02 21:53:19 -05:00
def osgiDescription() {
return mavenPom.description
2013-12-02 21:53:19 -05:00
}
2013-01-23 18:22:03 -05:00
jar {
manifest {
instruction 'Bundle-Activator', 'org.hibernate.osgi.HibernateBundleActivator'
instructionFirst 'Import-Package',
// TODO: Shouldn't have to explicitly list this, but the plugin
// generates it with a [1.0,2) version.
'javax.persistence;version="2.1.0"',
'javax.persistence.spi;version="2.1.0"'
}
2013-01-23 18:22:03 -05:00
}
test {
systemProperties['java.util.logging.manager'] = "org.jboss.logmanager.LogManager"
systemProperties['log4j.configuration'] = "file://$projectDir/src/test/resources/logging.properties"
}
task copyBnd(type: Copy) {
from "src/test/resources/bnd"
into "$buildDir/osgi-lib/bnd"
}
task runBnd(type: JavaExec) {
main = "-jar"
args "$buildDir/osgi-lib/bnd/bnd-2.1.0.jar", "$buildDir/osgi-lib/bnd/cdi-api.bnd", "$buildDir/osgi-lib/bnd/el-api.bnd", "$buildDir/osgi-lib/bnd/jandex.bnd"
}
task copyToLib(type: Copy) {
from configurations.osgiRuntime
from configurations.osgiRuntimeBnd
into "$buildDir/osgi-lib"
}
task felixProperties << {
copy {
from "src/test/resources/felix-framework.properties-ORIGINAL"
into "$buildDir/osgi-lib"
rename { String fileName ->
fileName.replace("-ORIGINAL", "")
}
}
File propertiesFile = file("$buildDir/osgi-lib/felix-framework.properties")
// append jars wrapped using BND
FileTree tree = fileTree(dir: "$buildDir/osgi-lib/bnd")
tree.exclude "*bnd*"
tree.each {File file ->
propertiesFile << " \\\nfile:target/osgi-lib/bnd/" + file.name
}
// append all jars in osgiRuntime configuration
configurations.osgiRuntime.each { File file ->
propertiesFile << " \\\nfile:target/osgi-lib/" + file.name
}
// append ORM jars
// TODO: Is there a better, dynamic way of doing this?
propertiesFile << " \\\nfile:../hibernate-core/target/libs/hibernate-core-" + hibernateTargetVersion + ".jar"
propertiesFile << " \\\nfile:../hibernate-entitymanager/target/libs/hibernate-entitymanager-" + hibernateTargetVersion + ".jar"
propertiesFile << " \\\nfile:target/libs/hibernate-osgi-" + hibernateTargetVersion + ".jar"
}
task testClientBundleJar(type: Jar) {
from sourceSets.testClientBundle.output
destinationDir new File("$buildDir/osgi-lib")
archiveName "testClientBundle.jar"
// The OSGi plugin acts up when we need to export multiple source sets. Just do it manually.
manifest {
attributes("Export-Package" : "org.hibernate.osgi.test.client,org.hibernate.osgi.test.result",
"Bundle-Name" : "testClientBundle",
"Bundle-Activator" : "org.hibernate.osgi.test.client.OsgiTestActivator",
"Bundle-ManifestVersion" : "2",
"Bundle-SymbolicName" : "testClientBundle",
"Import-Package" : "javassist.util.proxy,javax.persistence,javax.persistence.spi,org.h2,org.osgi.framework,"
+ "org.hibernate,"
+ "org.hibernate.boot.model,"
+ "org.hibernate.boot.registry.selector,"
+ "org.hibernate.boot.registry.selector.spi,"
+ "org.hibernate.cfg,"
+ "org.hibernate.engine.spi,"
+ "org.hibernate.integrator.spi,"
+ "org.hibernate.proxy,"
+ "org.hibernate.service,"
+ "org.hibernate.service.spi")
}
}
runBnd.dependsOn copyToLib
runBnd.dependsOn copyBnd
copyBnd.dependsOn copyToLib
felixProperties.dependsOn runBnd
test.dependsOn felixProperties
test.dependsOn testClientBundleJar
test.dependsOn jar