Skip to content

Commit

Permalink
Gradle build: Using ByteBuddy instead of Cglib with Spock
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed May 20, 2024
1 parent 0a26b2b commit eb67719
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ subprojects { project ->
testImplementation libs.slf4j.simple
testImplementation libs.spock.core, { transitive = false }
// Required by Spock's Mocking
testImplementation libs.cglib
testImplementation libs.bytebuddy
testImplementation libs.objenesis
}
}
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ant = "1.10.13"
asciidoctorj = "2.5.8"
aspectj = "1.9.19"
assertj = "3.22.0"
bytebuddy = "1.14.5"
caffeine = "3.1.6"
cglib = "3.3.0"
commons-codec = "1.15"
Expand Down Expand Up @@ -66,6 +67,7 @@ asciidoctorj = { module = "org.asciidoctor:asciidoctorj", version.ref = "asciido
assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" }
aspectj-rt = { module = "org.aspectj:aspectjrt", version.ref = "aspectj" }
aspectj-weaver = { module = "org.aspectj:aspectjweaver", version.ref = "aspectj" }
bytebuddy = { module = "net.bytebuddy:byte-buddy", version.ref = "bytebuddy" }
caffeine = { module = "com.github.ben-manes.caffeine:caffeine", version.ref = "caffeine" }
cglib = { module = "cglib:cglib-nodep", version.ref = "cglib" }
commons-codec = { module = "commons-codec:commons-codec", version.ref = "commons-codec" }
Expand Down

0 comments on commit eb67719

Please sign in to comment.