aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-server-common/build.gradle
diff options
context:
space:
mode:
authorlukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com>2024-06-27 17:34:35 +0200
committersonartech <sonartech@sonarsource.com>2024-06-28 20:02:47 +0000
commit87da64a36761305c9881f3f0e2e97eb12ecbb828 (patch)
tree1fcb661b6eca19a93c4c0985fc078c1b1b4cdca5 /server/sonar-server-common/build.gradle
parent933ce1afc61cf57a6a779c00ea592f922a9416ce (diff)
downloadsonarqube-87da64a36761305c9881f3f0e2e97eb12ecbb828.tar.gz
sonarqube-87da64a36761305c9881f3f0e2e97eb12ecbb828.zip
SONAR-22447 updated rename findbugs dependency
Diffstat (limited to 'server/sonar-server-common/build.gradle')
-rw-r--r--server/sonar-server-common/build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-server-common/build.gradle b/server/sonar-server-common/build.gradle
index d019caad292..3ad43d2a9c0 100644
--- a/server/sonar-server-common/build.gradle
+++ b/server/sonar-server-common/build.gradle
@@ -25,10 +25,10 @@ dependencies {
api project(':sonar-markdown')
api project(':sonar-ws')
- compileOnlyApi 'com.google.code.findbugs:jsr305'
+ compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
testImplementation 'org.elasticsearch.plugin:transport-netty4-client'
testImplementation 'ch.qos.logback:logback-core'
- testImplementation 'com.google.code.findbugs:jsr305'
+ testImplementation 'com.github.spotbugs:spotbugs-annotations'
testImplementation 'org.subethamail:subethasmtp'
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'com.squareup.okhttp3:okhttp-tls'
@@ -51,7 +51,7 @@ dependencies {
testFixturesApi 'junit:junit'
testFixturesApi testFixtures(project(':server:sonar-db-dao'))
- testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
+ testFixturesCompileOnly 'com.github.spotbugs:spotbugs-annotations'
testFixturesImplementation 'org.elasticsearch.plugin:transport-netty4-client'
testFixturesImplementation 'org.codelibs.elasticsearch.module:analysis-common'
testFixturesImplementation 'org.codelibs.elasticsearch.module:reindex'