Skip to content
Snippets Groups Projects
Commit 71fb5133 authored by Nikolaus Krismer's avatar Nikolaus Krismer
Browse files

simplified workaround for newline compiler issue

parent e951e7ed
No related branches found
No related tags found
No related merge requests found
...@@ -173,11 +173,9 @@ tasks.withType(JavaCompile) { ...@@ -173,11 +173,9 @@ tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all,-processing' options.compilerArgs << '-Xlint:all,-processing'
} }
tasks.withType(JavaCompile).all { Task task -> tasks.withType(JavaCompile) {
// fixes http://issues.gradle.org/browse/GRADLE-1230 // workaround for http://issues.gradle.org/browse/GRADLE-1230
task.doFirst { doFirst { println '' }
println ''
}
} }
asciidoctor { asciidoctor {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment