24 lines
677 B
Groovy
24 lines
677 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
|
||
|
}
|