diff --git a/hibernate-infinispan/hibernate-infinispan.gradle b/hibernate-infinispan/hibernate-infinispan.gradle deleted file mode 100644 index 399c41ec25..0000000000 --- a/hibernate-infinispan/hibernate-infinispan.gradle +++ /dev/null @@ -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 . - */ - -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 ) \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 335e71fea3..329205cf3b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,7 +5,6 @@ * See the lgpl.txt file in the root directory or . */ - plugins { id 'com.gradle.enterprise' version '3.2.1' } @@ -103,11 +102,12 @@ include 'hibernate-vibur' include 'hibernate-agroal' include 'hibernate-jcache' -include 'hibernate-ehcache' -include 'hibernate-infinispan' + include 'hibernate-micrometer' include 'hibernate-graalvm' +include 'hibernate-ehcache' + // 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. // We might be able to get rid of that limitation by relying on Gradle's built-in support for Java modules,