Skip to content

Commit

Permalink
use bytebuddy instead of cglib
Browse files Browse the repository at this point in the history
  • Loading branch information
kozjan committed Sep 16, 2024
1 parent c85367c commit 24d02c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ allprojects {
ecwid_consul : '1.4.1',
toxiproxy : '2.1.3',
consul_recipes : '0.9.1',
cglib : '3.2.9',
bytebuddy : '1.15.1',
re2j : '1.3',
xxhash : '0.10.1',
dropwizard : '4.2.26'
Expand Down
2 changes: 1 addition & 1 deletion envoy-control-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
testImplementation group: 'io.grpc', name: 'grpc-testing', version: versions.grpc
testImplementation group: 'io.projectreactor', name: 'reactor-test'
testImplementation group: 'org.mockito', name: 'mockito-core'
testImplementation group: 'cglib', name: 'cglib-nodep', version: versions.cglib
testImplementation group: 'net.bytebuddy', name: 'byte-buddy', version: versions.bytebuddy

testImplementation group: 'org.awaitility', name: 'awaitility'

Expand Down
2 changes: 1 addition & 1 deletion envoy-control-source-consul/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
api group: 'com.ecwid.consul', name: 'consul-api', version: versions.ecwid_consul

testImplementation group: 'org.mockito', name: 'mockito-core'
testImplementation group: 'cglib', name: 'cglib-nodep', version: versions.cglib
testImplementation group: 'net.bytebuddy', name: 'byte-buddy', version: versions.bytebuddy

testImplementation group: 'io.projectreactor', name: 'reactor-test'
testImplementation group: 'org.testcontainers', name: 'testcontainers'
Expand Down

0 comments on commit 24d02c3

Please sign in to comment.