diff --git a/agent/build.gradle b/agent/build.gradle index 28ac4476..b479bbb7 100644 --- a/agent/build.gradle +++ b/agent/build.gradle @@ -51,12 +51,12 @@ dependencies { // result, you won't be able to add hooks for anything in those packages. implementation 'com.alibaba:fastjson:1.2.83' implementation "org.javassist:javassist:${javassistVersion}" - implementation 'org.reflections:reflections:0.9.11' + implementation 'org.reflections:reflections:0.10.2' implementation 'net.bytebuddy:byte-buddy:1.14.10' - implementation 'org.apache.commons:commons-lang3:3.10' + implementation 'org.apache.commons:commons-lang3:3.20.0' implementation 'commons-io:commons-io:2.15.1' - implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.2' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2' + implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.16.1' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1' implementation 'org.slf4j:slf4j-nop:1.7.30' implementation 'info.picocli:picocli:4.6.1' implementation 'org.apache.httpcomponents:httpcore-nio:4.4.15' diff --git a/build.gradle b/build.gradle index 8418b551..d1fad7b0 100644 --- a/build.gradle +++ b/build.gradle @@ -46,7 +46,7 @@ subprojects { apply plugin: 'checkstyle' checkstyle { - toolVersion = "9.3" + toolVersion = "13.0.0" configFile = rootProject.file("config/checkstyle/checkstyle.xml") }