From 47f3a9d7cb41f8fca18cc06d88fd85f3b1c515b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 13:36:29 +0000 Subject: [PATCH] Bump net.bytebuddy:byte-buddy from 1.15.3 to 1.15.5 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.3 to 1.15.5. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.3...byte-buddy-1.15.5) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- engine/build.gradle.kts | 2 +- integrationtest/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/build.gradle.kts b/engine/build.gradle.kts index 0f7dbea..d90c5b8 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -85,7 +85,7 @@ dependencies { implementation("org.bouncycastle:bcpkix-jdk18on:1.78.1") testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") - testRuntimeOnly("net.bytebuddy:byte-buddy:1.15.3") + testRuntimeOnly("net.bytebuddy:byte-buddy:1.15.5") } java { diff --git a/integrationtest/build.gradle.kts b/integrationtest/build.gradle.kts index eb8a731..3e8db1b 100644 --- a/integrationtest/build.gradle.kts +++ b/integrationtest/build.gradle.kts @@ -62,7 +62,7 @@ dependencies { testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.14") testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") - testRuntimeOnly("net.bytebuddy:byte-buddy:1.15.3") + testRuntimeOnly("net.bytebuddy:byte-buddy:1.15.5") } tasks.check.get().shouldRunAfter(project(":engine").tasks.check)