diff --git a/CHANGELOG.md b/CHANGELOG.md index 16a82d6..25bba12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,13 @@ - Fix missing artifacts from a _Maven_ dependency with the `import` scope ### Notes -- Update the `github-api` dependency to `1.320` +- Update the `gradle-tooling-api` dependency to `8.7` +- Update the `github-api` dependency to `1.321` - Update `log4j-api`, `log4j-core`, `log4j-jul` and `log4j-slf4j-impl` dependencies to `2.23.1` - Update `mockito-core` and `mockito-junit-jupiter` dependencies to `5.11.0` - Update the `maven-compiler-plugin` plugin to `3.13.0` - Update the `maven-assembly-plugin` plugin to `3.7.1` -- Update the `maven-gpg-plugin` plugin to `3.2.1` +- Update the `maven-gpg-plugin` plugin to `3.2.2` ## [1.5.0](https://github.com/AlexisJehan/MvnCheck/releases/tag/v1.5.0) (2024-02-09) diff --git a/pom.xml b/pom.xml index 2627b90..f076b8b 100644 --- a/pom.xml +++ b/pom.xml @@ -89,12 +89,12 @@ org.gradle gradle-tooling-api - 8.6 + 8.7 org.kohsuke github-api - 1.320 + 1.321 com.infradna.tool @@ -430,7 +430,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.2.1 + 3.2.2 gpg-sign diff --git a/src/main/java/com/github/alexisjehan/mvncheck/core/component/artifact/type/GradleArtifactType.java b/src/main/java/com/github/alexisjehan/mvncheck/core/component/artifact/type/GradleArtifactType.java index aeb4b76..016667e 100644 --- a/src/main/java/com/github/alexisjehan/mvncheck/core/component/artifact/type/GradleArtifactType.java +++ b/src/main/java/com/github/alexisjehan/mvncheck/core/component/artifact/type/GradleArtifactType.java @@ -29,7 +29,7 @@ /** *

Enumeration of Gradle artifact types.

- *

Note: Based on {@code org.gradle:gradle-tooling-api:8.6}.

+ *

Note: Based on {@code org.gradle:gradle-tooling-api:8.7}.

* @see https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_plugin_and_dependency_management * @see https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_configurations_graph * @since 1.0.0 diff --git a/src/test/java/com/github/alexisjehan/mvncheck/core/component/build/resolver/GradleBuildResolverIT.java b/src/test/java/com/github/alexisjehan/mvncheck/core/component/build/resolver/GradleBuildResolverIT.java index 5516c5c..5aff13e 100644 --- a/src/test/java/com/github/alexisjehan/mvncheck/core/component/build/resolver/GradleBuildResolverIT.java +++ b/src/test/java/com/github/alexisjehan/mvncheck/core/component/build/resolver/GradleBuildResolverIT.java @@ -55,7 +55,7 @@ final class GradleBuildResolverIT { @Test void testUpToDate() { - assertThat(GradleUtils.VERSION).startsWith("8.6"); // Ensure tests are up-to-date after updating Gradle + assertThat(GradleUtils.VERSION).startsWith("8.7"); // Ensure tests are up-to-date after updating Gradle } @ParameterizedTest @@ -122,7 +122,7 @@ void testResolveSinceGradle68UntilJava20(final String gradleVersion, @TempDir fi } @ParameterizedTest - @ValueSource(strings = {"8.2", "8.3", "8.4", "8.5", "8.6"}) + @ValueSource(strings = {"8.2", "8.3", "8.4", "8.5", "8.6", "8.7"}) void testResolveSinceGradle68UntilJavaLatest(final String gradleVersion, @TempDir final Path tmpDirectory) { testResolveSinceGradle68(gradleVersion, tmpDirectory); }