diff options
Diffstat (limited to 'server/sonar-db-dao/build.gradle')
-rw-r--r-- | server/sonar-db-dao/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-db-dao/build.gradle b/server/sonar-db-dao/build.gradle index a75979c4356..527bac05be9 100644 --- a/server/sonar-db-dao/build.gradle +++ b/server/sonar-db-dao/build.gradle @@ -19,7 +19,7 @@ dependencies { api project(':server:sonar-db-migration') api project(':sonar-core') - compileOnlyApi 'com.google.code.findbugs:jsr305' + compileOnlyApi 'com.github.spotbugs:spotbugs-annotations' testImplementation 'commons-dbutils:commons-dbutils' testImplementation 'org.assertj:assertj-core' @@ -32,7 +32,7 @@ dependencies { testImplementation project(':sonar-testing-harness') testImplementation project(':sonar-plugin-api-impl') - testCompileOnly 'com.google.code.findbugs:jsr305' + testCompileOnly 'com.github.spotbugs:spotbugs-annotations' testRuntimeOnly 'com.h2database:h2' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' @@ -48,7 +48,7 @@ dependencies { testFixturesImplementation 'com.h2database:h2' - testFixturesCompileOnly 'com.google.code.findbugs:jsr305' + testFixturesCompileOnly 'com.github.spotbugs:spotbugs-annotations' } test { |