https://github.com/web3j/quorum
Raw File
Tip revision: b3c9607f52bef2d65b2a4f95b8d59149e79172fa authored by Antony Denyer on 27 November 2019, 10:11:34 UTC
fix: github release
Tip revision: b3c9607
build.gradle
apply plugin: 'java'

sourceCompatibility = 1.8
targetCompatibility = 1.8

compileJava {
    options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}

compileTestJava {
    options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
back to top