From e2d63841b0017301f1efb95e15ef265c7af2b4db Mon Sep 17 00:00:00 2001 From: "rick.parker" Date: Mon, 28 Nov 2016 11:04:07 +0000 Subject: [PATCH] Silence bootstrap class path javac warning relating to 1.6 and Capsule. This silences warning associated with javac command line option combinations. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 01c76900d4..8350762f04 100644 --- a/build.gradle +++ b/build.gradle @@ -65,7 +65,7 @@ allprojects { targetCompatibility = 1.8 tasks.withType(JavaCompile) { - options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" << "-Xlint:-options" } group 'net.corda'