Skip to content

Commit

Permalink
[Java] Use findbugs-annotations as a dependency name.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Jan 21, 2025
1 parent d8d3f36 commit ce76523
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}

Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit ce76523

Please sign in to comment.