mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-11 21:54:50 +00:00
- plus use Gradle version catalogs as opposed to `libraries.gradle` - dropped OSGi manifest entries for hibernate-envers - they were broken and we decided we no longer support OSGi
45 lines
1.2 KiB
Groovy
45 lines
1.2 KiB
Groovy
plugins {
|
|
id 'java-platform'
|
|
}
|
|
|
|
apply from: rootProject.file( "gradle/base-information.gradle" )
|
|
apply from: rootProject.file( "gradle/publishing-pom.gradle" )
|
|
|
|
dependencies {
|
|
constraints {
|
|
api project( ":hibernate-core" )
|
|
api project( ":hibernate-testing" )
|
|
api project( ":hibernate-envers" )
|
|
api project( ":hibernate-spatial" )
|
|
|
|
api project( ":hibernate-agroal" )
|
|
api project( ":hibernate-c3p0" )
|
|
api project( ":hibernate-hikaricp" )
|
|
api project( ":hibernate-proxool" )
|
|
api project( ":hibernate-vibur" )
|
|
|
|
api project( ":hibernate-jcache" )
|
|
|
|
api project( ":hibernate-micrometer" )
|
|
api project( ":hibernate-graalvm")
|
|
|
|
api project( ":hibernate-jpamodelgen" )
|
|
api project( ":hibernate-gradle-plugin" )
|
|
api project( ":hibernate-enhance-maven-plugin" )
|
|
api project( ":hibernate-ant" )
|
|
|
|
api jakartaLibs.jpa
|
|
api jakartaLibs.jta
|
|
|
|
api libs.byteBuddy
|
|
api "net.bytebuddy:byte-buddy-agent:${libs.versions.byteBuddy}"
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
publishedArtifacts {
|
|
from components.javaPlatform
|
|
}
|
|
}
|
|
} |