Declare 'com.google.code.findbugs:jsr305' as a compileOnly/testCompileOnly depedency to cleanup Gradle build warnings.

Without this dependency the Gradle build logs warnings about:

> Task :spring-geode-autoconfigure:compileTestJava
warning: unknown enum constant When.MAYBE
  reason: class file for javax.annotation.meta.When not found
...
This commit is contained in:
John Blum
2020-07-23 13:45:27 -07:00
parent 6fc18bc449
commit 5ca11cbc44
5 changed files with 11 additions and 0 deletions

View File

@@ -18,6 +18,8 @@ dependencies {
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
}
processResources {