From 8d424eee9bf9c79a5812d875330db0c23e473d7a Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 7 Apr 2015 12:56:20 -0700 Subject: [PATCH] SGF-394 - Improve SDG Gradle build removing FindBug compilation warnings caused by GemFire. --- build.gradle | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 845dca9f..ff6e44de 100644 --- a/build.gradle +++ b/build.gradle @@ -3,10 +3,11 @@ buildscript { maven { url 'https://repo.spring.io/plugins-release' } } dependencies { - classpath 'org.springframework.build.gradle:bundlor-plugin:0.1.2' classpath 'io.spring.gradle:docbook-reference-plugin:0.3.0' - classpath('org.asciidoctor:asciidoctor-gradle-plugin:1.5.0') - classpath('org.asciidoctor:asciidoctorj:1.5.0') + classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.0' + classpath 'org.asciidoctor:asciidoctorj:1.5.0' + classpath 'org.springframework.build.gradle:bundlor-plugin:0.1.2' + classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.6' classpath 'org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE' } } @@ -27,9 +28,10 @@ apply plugin: "java" apply plugin: 'eclipse' apply plugin: 'idea' apply from: "$rootDir/maven.gradle" +apply plugin: 'bundlor' +apply plugin: 'propdeps' apply plugin: 'docbook-reference' apply plugin: 'org.asciidoctor.gradle.asciidoctor' -apply plugin: 'bundlor' //project.bundlor.bundleSymbolicName = "${bundleSymbolicName}" @@ -76,6 +78,7 @@ dependencies { // GemFire compile("com.gemstone.gemfire:gemfire:$gemfireVersion") + optional("com.google.code.findbugs:annotations:2.0.2") runtime("antlr:antlr:$antlrVersion") compile "org.aspectj:aspectjweaver:$aspectjVersion"