From 89a3b0453af97c41dc0ea15e80ff9a20b0a302be Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Mon, 23 Jul 2018 15:24:13 -0500 Subject: [PATCH] Added JSR-305 dependency to prevent test compile warnings --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 0531b7cf8..ff7767b25 100644 --- a/build.gradle +++ b/build.gradle @@ -373,6 +373,8 @@ project('spring-batch-infrastructure') { optional "org.springframework.ldap:spring-ldap-core:$springLdapVersion" optional "org.springframework.ldap:spring-ldap-core-tiger:$springLdapVersion" optional "org.springframework.ldap:spring-ldap-ldif-core:$springLdapVersion" + // JSR-305 only used for non-required meta-annotations + testCompileOnly("com.google.code.findbugs:jsr305:3.0.2") } if (project.hasProperty('platformVersion')) {