diff options
author | lukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com> | 2024-06-27 17:34:35 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-06-28 20:02:47 +0000 |
commit | 87da64a36761305c9881f3f0e2e97eb12ecbb828 (patch) | |
tree | 1fcb661b6eca19a93c4c0985fc078c1b1b4cdca5 /server/sonar-ce-task | |
parent | 933ce1afc61cf57a6a779c00ea592f922a9416ce (diff) | |
download | sonarqube-87da64a36761305c9881f3f0e2e97eb12ecbb828.tar.gz sonarqube-87da64a36761305c9881f3f0e2e97eb12ecbb828.zip |
SONAR-22447 updated rename findbugs dependency
Diffstat (limited to 'server/sonar-ce-task')
-rw-r--r-- | server/sonar-ce-task/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-ce-task/build.gradle b/server/sonar-ce-task/build.gradle index ade8647bbd6..88959d6a1ab 100644 --- a/server/sonar-ce-task/build.gradle +++ b/server/sonar-ce-task/build.gradle @@ -24,13 +24,13 @@ dependencies { api project(':server:sonar-server-common') api project(':sonar-core') - compileOnlyApi 'com.google.code.findbugs:jsr305' + compileOnlyApi 'com.github.spotbugs:spotbugs-annotations' compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api' testImplementation 'ch.qos.logback:logback-access' testImplementation 'ch.qos.logback:logback-classic' testImplementation 'ch.qos.logback:logback-core' - testImplementation 'com.google.code.findbugs:jsr305' + testImplementation 'com.github.spotbugs:spotbugs-annotations' testImplementation 'com.tngtech.java:junit-dataprovider' testImplementation 'junit:junit' testImplementation 'org.apache.logging.log4j:log4j-api' @@ -44,7 +44,7 @@ dependencies { testFixturesApi 'org.assertj:assertj-core' - testFixturesCompileOnly 'com.google.code.findbugs:jsr305' + testFixturesCompileOnly 'com.github.spotbugs:spotbugs-annotations' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' testRuntimeOnly 'org.junit.vintage:junit-vintage-engine' |