tasks.withType(JavaCompile) {
// Suppress the most common legacy Java 8 noise
options.compilerArgs << "-Xlint:-sunapi"
options.compilerArgs << "-Xlint:-deprecation"
options.compilerArgs << "-Xlint:-options"
}
// Ensure the daemon doesn't try to broadcast memory status it can't find
tasks.withType(JavaExec) {
jvmArgs "-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager"
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)