Merged in parkri-silence-javac-warning (pull request #561)

Silence bootstrap class path javac warning relating to 1.6 and Capsule.  This silences warning associated with javac command line option combinations.
This commit is contained in:
Rick Parker 2016-11-28 12:05:41 +00:00
commit 92d14d7582

View File

@ -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'