32 lines
833 B
Groovy
32 lines
833 B
Groovy
// keep dependencies for transitivity to consumers
|
|
dependencies {
|
|
compile( project( ':hibernate-core' ) )
|
|
compile( libraries.dom4j )
|
|
compile( libraries.commons_annotations )
|
|
compile( libraries.jpa )
|
|
compile( libraries.javassist )
|
|
compile( libraries.jta )
|
|
}
|
|
|
|
mavenPom {
|
|
name = '(deprecated - use hibernate-core instead) Hibernate JPA Support'
|
|
description = '(deprecated - use hibernate-core instead) Hibernate O/RM implementation of the JPA specification'
|
|
}
|
|
|
|
public String osgiDescription() {
|
|
return mavenPom.description
|
|
}
|
|
|
|
jar {
|
|
// The OSGi JAR manifest support does not like a non-existent classes dir,
|
|
// so make sure we dont use the OSGi one :)
|
|
manifest = null
|
|
}
|
|
|
|
sourcesJar {
|
|
// The OSGi JAR manifest support does not like a non-existent classes dir,
|
|
// so make sure we dont use the OSGi one :)
|
|
manifest = null
|
|
}
|
|
|