From a69e3aeb859c5aa1f7244b2760631b0eadca2a19 Mon Sep 17 00:00:00 2001 From: DevDavido <997605+DevDavido@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:55:10 +0200 Subject: [PATCH] build: Update dependencies - org.eclipse.jgit:org.eclipse.jgit - org.slf4j:slf4j-api - com.intershop.gradle.test:test-gradle-plugin - commons-io:commons-io --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0443183..98acb3d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -245,16 +245,16 @@ dependencies { implementation(gradleKotlinDsl()) //jgit - implementation("org.eclipse.jgit:org.eclipse.jgit:6.8.0.202311291450-r") { + implementation("org.eclipse.jgit:org.eclipse.jgit:6.10.0.202406032230-r") { exclude(group = "org.apache.httpcomponents", module = "httpclient") exclude(group = "org.slf4j", module = "slf4j-api") } testRuntimeOnly("org.apache.httpcomponents:httpclient:4.5.14") - testRuntimeOnly("org.slf4j:slf4j-api:2.0.9") + testRuntimeOnly("org.slf4j:slf4j-api:2.0.16") - testImplementation("com.intershop.gradle.test:test-gradle-plugin:5.0.1") + testImplementation("com.intershop.gradle.test:test-gradle-plugin:5.1.0") testImplementation(gradleTestKit()) - testImplementation("commons-io:commons-io:2.15.1") + testImplementation("commons-io:commons-io:2.17.0") }