Skip to content

Commit

Permalink
Update the gradle-tooling-api dependency to 8.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisJehan committed Jul 14, 2023
1 parent 02aa337 commit eca83cd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## 1.4.0 (unreleased)

### Notes
- Update the `gradle-tooling-api` dependency to `8.2.1`

## [1.3.1](https://github.com/AlexisJehan/MavenCheck/releases/tag/v1.3.1) (2023-06-27)

### Notes
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-tooling-api</artifactId>
<version>8.1.1</version>
<version>8.2.1</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

/**
* <p>Enumeration of <i>Gradle</i> artifact types.</p>
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.1.1}.</p>
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.2.1}.</p>
* @see <a href="https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_plugin_and_dependency_management">https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_plugin_and_dependency_management</a>
* @see <a href="https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_configurations_graph">https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_configurations_graph</a>
* @since 1.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ final class GradleBuildResolverIT {

@Test
void testUpToDate() {
assertThat(GradleUtils.getVersion()).startsWith("8.1"); // Ensure tests are up-to-date after updating Gradle
assertThat(GradleUtils.getVersion()).startsWith("8.2"); // Ensure tests are up-to-date after updating Gradle
}

@ParameterizedTest
Expand Down Expand Up @@ -115,7 +115,7 @@ void testResolveSinceGradle68UntilJava19(final String gradleVersion, @TempDir fi
}

@ParameterizedTest
@ValueSource(strings = "8.1")
@ValueSource(strings = {"8.1", "8.2"})
void testResolveSinceGradle68UntilJavaLatest(final String gradleVersion, @TempDir final Path tmpDirectory) {
testResolveSinceGradle68(gradleVersion, tmpDirectory);
}
Expand Down

0 comments on commit eca83cd

Please sign in to comment.