From b26b00a3586ca8e40d99576c726531ebd6328b99 Mon Sep 17 00:00:00 2001 From: Steve Ebersole Date: Wed, 14 Jul 2021 11:44:35 -0500 Subject: [PATCH] Bump matrix testing plugin to 3.1.0 (prep for Gradle 7) --- documentation/documentation.gradle | 2 +- hibernate-core/hibernate-core.gradle | 2 +- hibernate-envers/hibernate-envers.gradle | 2 +- hibernate-spatial/hibernate-spatial.gradle | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/documentation.gradle b/documentation/documentation.gradle index 99e9e8d261..65e73ae120 100644 --- a/documentation/documentation.gradle +++ b/documentation/documentation.gradle @@ -31,7 +31,7 @@ projectsToIncludeInAggregatedJavadoc.each {projectPath -> apply from: rootProject.file( 'gradle/java-module.gradle' ) apply plugin: 'org.asciidoctor.convert' -apply plugin: 'hibernate-matrix-testing' +apply plugin: 'org.hibernate.matrix-test' tasks.build.dependsOn 'buildDocs' defaultTasks 'buildDocs' diff --git a/hibernate-core/hibernate-core.gradle b/hibernate-core/hibernate-core.gradle index b787f77065..466498b252 100644 --- a/hibernate-core/hibernate-core.gradle +++ b/hibernate-core/hibernate-core.gradle @@ -14,7 +14,7 @@ description = 'Hibernate\'s core ORM functionality' apply from: rootProject.file( 'gradle/published-java-module.gradle' ) apply plugin: 'org.hibernate.orm.antlr' -apply plugin: 'hibernate-matrix-testing' +apply plugin: 'org.hibernate.matrix-test' ext { jaxbTargetDir = file( "${buildDir}/generated-src/jaxb/main" ) diff --git a/hibernate-envers/hibernate-envers.gradle b/hibernate-envers/hibernate-envers.gradle index 9132a16f30..87defc0047 100644 --- a/hibernate-envers/hibernate-envers.gradle +++ b/hibernate-envers/hibernate-envers.gradle @@ -8,7 +8,7 @@ description = 'Hibernate\'s entity version (audit/history) support' apply from: rootProject.file( 'gradle/published-java-module.gradle' ) -apply plugin: 'hibernate-matrix-testing' +apply plugin: 'org.hibernate.matrix-test' dependencies { api( project( ':hibernate-core' ) ) { diff --git a/hibernate-spatial/hibernate-spatial.gradle b/hibernate-spatial/hibernate-spatial.gradle index a33a535903..b73706c4db 100644 --- a/hibernate-spatial/hibernate-spatial.gradle +++ b/hibernate-spatial/hibernate-spatial.gradle @@ -10,7 +10,7 @@ import org.apache.tools.ant.filters.ReplaceTokens description = 'Integrate support for Spatial/GIS data into Hibernate O/RM' apply from: rootProject.file( 'gradle/published-java-module.gradle' ) -apply plugin: 'hibernate-matrix-testing' +apply plugin: 'org.hibernate.matrix-test' dependencies {