diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d0fbff..7915a09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ # Java Ecosystem Capabilities Gradle plugin - Changelog +## Version 1.5 +* [New] [#61](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/61) Generic rule implementations to ease configuration of custom rules in Java projects +* [New Rules] [#63](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/63) Rule that sets the component status to 'integration' for common pre-release version numbers +* [New Rules] [#62](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/62) com.g.c.findbugs:annotations / com.github.spotbugs:spotbugs-annotations (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting) + ## Version 1.4 * [New Rules] [#50](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/50) net.jcip:jcip-annotations / com.github.stephenc.jcip:jcip-annotations (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting) -* [Adjusted Rule] [#41](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/41) org.glassfish.hk2.external:jakarta.injectt (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting) +* [Adjusted Rule] [#41](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/41) org.glassfish.hk2.external:jakarta.inject (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting) * [Adjusted Rule] [#59](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/59) javax.mail:javax.mail-api / org.apache.geronimo.specs:geronimo-javamail (Thanks [Boris Petrov](https://github.com/boris-petrov)!) * [Adjusted Rule] [#60](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/60) org.springframework:spring-aop (Thanks [Boris Petrov](https://github.com/boris-petrov)!) diff --git a/README.MD b/README.MD index 97999d1..7dbd656 100644 --- a/README.MD +++ b/README.MD @@ -29,7 +29,7 @@ Add this to the build file of your convention plugin's build ``` groovy dependencies { - implementation("org.gradlex:java-ecosystem-capabilities:1.4") + implementation("org.gradlex:java-ecosystem-capabilities:1.5") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 10eb909..db4fd1d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,11 +1,11 @@ plugins { id("groovy") id("gradlexbuild.java-ecosystem-capabilities-documentation") - id("org.gradlex.internal.plugin-publish-conventions") version "0.5" + id("org.gradlex.internal.plugin-publish-conventions") version "0.6" } group = "org.gradlex" -version = "1.4" +version = "1.5" java { toolchain.languageVersion.set(JavaLanguageVersion.of(11)) // to run tests that use Android with 11 @@ -42,11 +42,6 @@ dependencies { testRuntimeOnly("org.junit.vintage:junit-vintage-engine") } -// TODO This needs to be included in org.gradlex.internal.plugin-publish-conventions -signing { - useInMemoryPgpKeys(providers.environmentVariable("SIGNING_KEY").orNull, providers.environmentVariable("SIGNING_PASSPHRASE").orNull) -} - testing.suites.named("test") { useJUnitJupiter() targets.all { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index b61bd51..12b34af 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-rc-2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-rc-3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME