From a18f4483ac132ca6422e6f5053ad2391eebfdf91 Mon Sep 17 00:00:00 2001 From: Alex-Vol Date: Wed, 18 Sep 2024 17:43:30 +0300 Subject: [PATCH 1/5] Update README.md --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a6d82ab..717bbb5 100755 --- a/README.md +++ b/README.md @@ -29,10 +29,14 @@ Tested with OpenJDK JDK8 | Gradle Version | Works | |:--------------:| :---: | -| 4.8 | yes | -| 5.6.4 | yes | -| 6.9.2 | yes | -| 7.3.3 | yes | +| 6.1 | yes | +| 6.9.4 | yes | +| 7.6.4 | yes | +| 8.10.1 | yes | + +# Gradle version 6.0.1 and older + +Compatibility with Gradle 8.x required changes that make the plugin versions greater than 3.0.3 incompatible with Gradle 6.0.1 and older. Use 3.0.3 version or upgrade to a supported version of Gradle. # Gradle version 4.7 and older @@ -59,7 +63,7 @@ example on how to retrieve it from Gradle Plugins Portal: } dependencies { - classpath 'com.bmuschko:gradle-clover-plugin:3.0.3' + classpath 'com.bmuschko:gradle-clover-plugin:3.0.7' } } From 5bd5f27e1324fc32755e47c82a5d540bb0ffd90e Mon Sep 17 00:00:00 2001 From: Alex-Vol Date: Wed, 18 Sep 2024 17:45:36 +0300 Subject: [PATCH 2/5] Update gradle.properties --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 82d6f98..c2bf113 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Allow easy configuration of Gradle versions gradleCurrentVersion = 7.6.4 -gradleTestingVersions = 4.8,5.6.4,6.9.2,7.3.3 +gradleTestingVersions = 6.1,6.9.4,7.3.3 # Set default behavior for Reckon version plugin reckon.scope=patch From 1d1807ea108e180ae80771e80883f0e68a2aaf3e Mon Sep 17 00:00:00 2001 From: Alex-Vol Date: Wed, 18 Sep 2024 18:25:30 +0300 Subject: [PATCH 3/5] Update build.gradle --- build.gradle | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index cf061d5..a19996a 100755 --- a/build.gradle +++ b/build.gradle @@ -36,19 +36,16 @@ apply from: "gradle/additional-artifacts.gradle" apply from: "gradle/publishing.gradle" apply from: "gradle/documentation.gradle" -tasks.withType(JavaCompile) { +tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' } -tasks.withType(GroovyCompile) { +tasks.withType(GroovyCompile).configureEach { groovyOptions.encoding = 'UTF-8' options.encoding = 'UTF-8' } -tasks.withType(Test) { - if (project.hasProperty('rerun')) { - outputs.upToDateWhen { false } - } +tasks.withType(Test).configureEach { testLogging { events 'started', 'passed', 'failed', 'skipped' } @@ -78,8 +75,10 @@ dependencies { } ext.compatibilityVersion = '1.8' -sourceCompatibility = compatibilityVersion -targetCompatibility = compatibilityVersion +java { + sourceCompatibility = compatibilityVersion + targetCompatibility = compatibilityVersion +} // Only add changing data to the manifest when publishing gradle.taskGraph.whenReady { graph -> From 4260c807da2956b56fcc78d6042f91b8d90f951a Mon Sep 17 00:00:00 2001 From: Alex-Vol Date: Wed, 18 Sep 2024 18:32:46 +0300 Subject: [PATCH 4/5] Update linux-build-release.yml --- .github/workflows/linux-build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-build-release.yml b/.github/workflows/linux-build-release.yml index 20abc59..a232280 100644 --- a/.github/workflows/linux-build-release.yml +++ b/.github/workflows/linux-build-release.yml @@ -15,7 +15,7 @@ jobs: - name: Compilation uses: gradle/gradle-build-action@v2 env: - GRADLE_OPTS: -Dfile.encoding=windows-1252 + GRADLE_OPTS: -Dfile.encoding=windows-1252 -Ddevelocity.deprecation.captureOrigin=true with: arguments: classes - name: Validate plugin From 05e918439082234e90ae2f5b4f37adbc2ac85cdd Mon Sep 17 00:00:00 2001 From: Alex-Vol Date: Wed, 18 Sep 2024 18:39:33 +0300 Subject: [PATCH 5/5] Update RELEASE_NOTES.md --- RELEASE_NOTES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9e877cd..0072386 100755 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### Version 3.0.7 + +No changes, created to fix issues with Github pages + ### Version 3.0.4 * Enhanced compatibility with Gradle 8.x