diff --git a/build.gradle b/build.gradle index 65510e9d81..6a49e9a99f 100644 --- a/build.gradle +++ b/build.gradle @@ -1007,8 +1007,8 @@ project(':aeron-agent') { implementation aeronClusterProject implementation libs.byteBuddy implementation libs.byteBuddy.agent - compileOnly libs.findbugs - testCompileOnly libs.findbugs + compileOnly libs.findbugs.annotations + testCompileOnly libs.findbugs.annotations testImplementation project(':aeron-test-support') } @@ -1189,7 +1189,7 @@ project(':aeron-system-tests') { testImplementation project(path: ':aeron-cluster') testImplementation libs.byteBuddy testImplementation libs.byteBuddy.agent - testCompileOnly libs.findbugs + testCompileOnly libs.findbugs.annotations } tasks.named('test').configure { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4bf077fb08..2f923da7fb 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -32,7 +32,7 @@ byteBuddy = { group = "net.bytebuddy", name = "byte-buddy", version.ref = "byteB byteBuddy-agent = { group = "net.bytebuddy", name = "byte-buddy-agent", version.ref = "byteBuddy" } commons-codec = { group = "commons-codec", name = "commons-codec", version.ref = "commons-codec" } commons-lang3 = { group = "org.apache.commons", name = "commons-lang3", version.ref = "commons-lang3" } -findbugs = { group = "com.google.code.findbugs", name = "findbugs-annotations", version.ref= "findbugs" } +findbugs-annotations = { group = "com.google.code.findbugs", name = "findbugs-annotations", version.ref= "findbugs" } hamcrest = { group = "org.hamcrest", name = "hamcrest", version.ref = "hamcrest" } hdrHistogram = { group = "org.hdrhistogram", name = "HdrHistogram", version.ref = "hdrHistogram" } httpcore = { group = "org.apache.httpcomponents", name = "httpcore", version.ref = "httpcore" }