Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisJehan committed Nov 23, 2024
1 parent 11d7a39 commit 9110dfb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

### Notes
- Add the `maven-dependency-plugin` plugin
- Update `log4j-api`, `log4j-core`, `log4j-jul` and `log4j-slf4j-impl` dependencies to `2.24.1`
- Update the `gradle-tooling-api` dependency to `8.11.1`
- Update `log4j-api`, `log4j-core`, `log4j-jul` and `log4j-slf4j-impl` dependencies to `2.24.2`
- Update the `junit-jupiter` dependency to `5.11.3`
- Update `mockito-core` and `mockito-junit-jupiter` dependencies to `5.14.2`
- Update the `maven-pmd-plugin` plugin to `3.26.0`
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-tooling-api</artifactId> <!-- From the "gradle" repository -->
<version>8.10.2</version>
<version>8.11.1</version>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>
Expand Down Expand Up @@ -114,24 +114,24 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.24.1</version>
<version>2.24.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.24.1</version>
<version>2.24.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
<version>2.24.1</version>
<version>2.24.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.24.1</version>
<version>2.24.2</version>
<scope>runtime</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Enumeration of <i>Gradle</i> artifact types.
*
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.10}.</p>
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.11.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 @@ -56,7 +56,7 @@ final class GradleBuildResolverIT {

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

@ParameterizedTest
Expand Down Expand Up @@ -152,7 +152,7 @@ void testResolveSinceGradle68UntilJava22(final String gradleVersion, @TempDir fi

@ParameterizedTest
@EnabledForJreRange(max = JRE.JAVA_23)
@ValueSource(strings = "8.10")
@ValueSource(strings = {"8.10", "8.11"})
void testResolveSinceGradle68UntilJava23(final String gradleVersion, @TempDir final Path tmpDirectory) {
testResolveSinceGradle68(gradleVersion, tmpDirectory);
}
Expand Down

0 comments on commit 9110dfb

Please sign in to comment.