26 lines
771 B
Groovy
26 lines
771 B
Groovy
description = 'Integration for javax.cache into Hibernate as a second-level caching service'
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
apply plugin: 'org.hibernate.orm.build.properties'
|
|
|
|
dependencies {
|
|
api project( ':hibernate-core' )
|
|
api libs.jcache
|
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
|
|
testRuntimeOnly(libs.ehcache3) {
|
|
capabilities {
|
|
requireCapability 'org.ehcache.modules:ehcache-xml-jakarta'
|
|
}
|
|
}
|
|
}
|
|
|
|
task collectConfigProperties { task ->
|
|
description 'Collect config properties'
|
|
|
|
tasks.generateConfigsProperties.javadocsBaseLink = 'https://docs.jboss.org/hibernate/orm/' + rootProject.ormVersion.family + '/javadocs/'
|
|
|
|
dependsOn tasks.generateConfigsProperties
|
|
}
|