HHH-14598 - Drop `hibernate-infinispan`
This commit is contained in:
parent
c17396521c
commit
bb047a9d9e
|
@ -1,35 +0,0 @@
|
||||||
/*
|
|
||||||
* Hibernate, Relational Persistence for Idiomatic Java
|
|
||||||
*
|
|
||||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
||||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
description = '(deprecated - use org.infinispan:infinispan-hibernate-cache-v53 instead)'
|
|
||||||
|
|
||||||
apply from: rootProject.file( 'gradle/base-information.gradle' )
|
|
||||||
apply from: rootProject.file( 'gradle/publishing-repos.gradle' )
|
|
||||||
apply from: rootProject.file( 'gradle/publishing-pom.gradle' )
|
|
||||||
apply plugin: 'maven-publish'
|
|
||||||
apply plugin: 'org.hibernate.build.maven-repo-auth'
|
|
||||||
|
|
||||||
ext {
|
|
||||||
relocatedGroupId = 'org.infinispan'
|
|
||||||
relocatedArtifactId = 'infinispan-hibernate-cache-v53'
|
|
||||||
relocatedVersion = '9.3.0.Final'
|
|
||||||
}
|
|
||||||
|
|
||||||
publishing {
|
|
||||||
publications {
|
|
||||||
publishedArtifacts {
|
|
||||||
pom.withXml {
|
|
||||||
def relocation = asNode().appendNode( 'distributionManagement' ).appendNode( 'relocation' )
|
|
||||||
relocation.appendNode( 'groupId', project.relocatedGroupId)
|
|
||||||
relocation.appendNode( 'artifactId', project.relocatedArtifactId )
|
|
||||||
relocation.appendNode( 'version', project.relocatedVersion )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
task release( dependsOn: bintrayUpload )
|
|
|
@ -5,7 +5,6 @@
|
||||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.gradle.enterprise' version '3.2.1'
|
id 'com.gradle.enterprise' version '3.2.1'
|
||||||
}
|
}
|
||||||
|
@ -103,11 +102,12 @@ include 'hibernate-vibur'
|
||||||
include 'hibernate-agroal'
|
include 'hibernate-agroal'
|
||||||
|
|
||||||
include 'hibernate-jcache'
|
include 'hibernate-jcache'
|
||||||
include 'hibernate-ehcache'
|
|
||||||
include 'hibernate-infinispan'
|
|
||||||
include 'hibernate-micrometer'
|
include 'hibernate-micrometer'
|
||||||
include 'hibernate-graalvm'
|
include 'hibernate-graalvm'
|
||||||
|
|
||||||
|
include 'hibernate-ehcache'
|
||||||
|
|
||||||
// The plugin used to generate Java modules was compiled using JDK11.
|
// The plugin used to generate Java modules was compiled using JDK11.
|
||||||
// This means even with toolchains, Gradle needs to be run with Java 11+ in order to run Java modules ITs.
|
// This means even with toolchains, Gradle needs to be run with Java 11+ in order to run Java modules ITs.
|
||||||
// We might be able to get rid of that limitation by relying on Gradle's built-in support for Java modules,
|
// We might be able to get rid of that limitation by relying on Gradle's built-in support for Java modules,
|
||||||
|
|
Loading…
Reference in New Issue