Skip to content

Commit

Permalink
Update some dependencies and plugins
Browse files Browse the repository at this point in the history
- Update the gradle-tooling-api dependency to 8.7
- Update the github-api dependency to 1.321
- Update the maven-gpg-plugin plugin to 3.2.2
  • Loading branch information
AlexisJehan committed Apr 2, 2024
1 parent bb60205 commit 432d3bb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-tooling-api</artifactId> <!-- From the "gradle" repository -->
<version>8.6</version>
<version>8.7</version>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
<version>1.320</version>
<version>1.321</version>
</dependency>
<dependency>
<groupId>com.infradna.tool</groupId>
Expand Down Expand Up @@ -430,7 +430,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<executions>
<execution>
<id>gpg-sign</id>
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.6}.</p>
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.7}.</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.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
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit 432d3bb

Please sign in to comment.