diff --git a/README.md b/README.md index 2210865..412fc6a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Build your Java TrustStore with Gradle -This Gradle plugin for Gradle 7.0 and newer can build a Java TrustStore from existing certificates and bundles like the [Mozilla CA certificate store](https://curl.se/docs/caextract.html). +This Gradle plugin for Gradle 8.0 and newer can build a Java TrustStore from existing certificates and bundles like the [Mozilla CA certificate store](https://curl.se/docs/caextract.html). TrustStores can be built in the JKS format or as PKCS12-containers. Additionally, a validation check for the certificates is provided by this plugin, too. diff --git a/src/test/groovy/de/chkpnt/gradle/plugin/truststorebuilder/TrustStoreBuilderPluginTest.groovy b/src/test/groovy/de/chkpnt/gradle/plugin/truststorebuilder/TrustStoreBuilderPluginTest.groovy index a6190a3..708dbf4 100644 --- a/src/test/groovy/de/chkpnt/gradle/plugin/truststorebuilder/TrustStoreBuilderPluginTest.groovy +++ b/src/test/groovy/de/chkpnt/gradle/plugin/truststorebuilder/TrustStoreBuilderPluginTest.groovy @@ -253,7 +253,7 @@ class TrustStoreBuilderPluginTest extends Specification { private def GradleRunner buildGradleRunner(String... tasks) { GradleRunner.create() .withDebug(true) - .withGradleVersion("7.0") + .withGradleVersion("8.0") .withProjectDir(testProjectDir.toFile()) .withArguments(tasks) .withPluginClasspath()