Skip to content

Commit

Permalink
fix(deps): Switch from cglib to bytebuddy
Browse files Browse the repository at this point in the history
Cglib has problems, bytebuddy works (and is the recommended choice from Spock).
  • Loading branch information
matrei committed Sep 15, 2024
1 parent fe25282 commit 6e07be9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ dependencies {

testImplementation 'org.javassist:javassist:3.29.0-GA'
testImplementation "org.apache.groovy:groovy-dateutil"
testImplementation "cglib:cglib-nodep:2.2.2"
testImplementation("org.jodd:jodd-wot:$joddWotVersion") {
exclude module: 'slf4j-api'
exclude module: 'asm'
}

testRuntimeOnly "net.bytebuddy:byte-buddy:$byteBuddyVersion"
}

tasks.withType(GroovyCompile).configureEach {
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ grailsGradlePluginVersion=7.0.0-SNAPSHOT
grailsScaffoldingVersion=2.1.0
groovyVersion=4.0.23
joddWotVersion=3.3.8
byteBuddyVersion=1.14.12
asciidoc=true
githubSlug=gpc/fields
githubBranch=master
Expand Down

0 comments on commit 6e07be9

Please sign in to comment.