29 lines
892 B
Groovy
29 lines
892 B
Groovy
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" )
|
|
}
|
|
|
|
def pomName() {
|
|
return 'Hibernate OSGi Support'
|
|
}
|
|
|
|
def pomDescription() {
|
|
return 'Support for running Hibernate O/RM in OSGi environments'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
instruction 'Bundle-Activator', 'org.hibernate.osgi.HibernateBundleActivator'
|
|
instruction 'Bundle-Description', 'Hibernate ORM OSGi'
|
|
|
|
instruction '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"'
|
|
}
|
|
}
|