From b0360db1464c4fcd16180b62151bca9561b8a3b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 13:59:01 +0000 Subject: [PATCH] Bump net.bytebuddy:byte-buddy from 1.13.0 to 1.14.0 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.13.0 to 1.14.0. - [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.13.0...byte-buddy-1.14.0) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:production update-type: version-update:semver-minor ... 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 7ea6c41d..7bbd1915 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -85,7 +85,7 @@ dependencies { implementation("org.bouncycastle:bcpkix-jdk15on:1.70") testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") - testRuntimeOnly("net.bytebuddy:byte-buddy:1.13.0") + testRuntimeOnly("net.bytebuddy:byte-buddy:1.14.0") } java { diff --git a/integrationtest/build.gradle.kts b/integrationtest/build.gradle.kts index 4ac8d6c5..7b71d2f3 100644 --- a/integrationtest/build.gradle.kts +++ b/integrationtest/build.gradle.kts @@ -61,7 +61,7 @@ dependencies { testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.5") testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") - testRuntimeOnly("net.bytebuddy:byte-buddy:1.13.0") + testRuntimeOnly("net.bytebuddy:byte-buddy:1.14.0") } tasks.check.get().shouldRunAfter(project(":engine").tasks.check)