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

tried to fix gradle newline issue

parent 0693e67a
No related branches found
No related tags found
No related merge requests found
......@@ -173,6 +173,13 @@ tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all,-processing'
}
tasks.withType(JavaCompile).all { Task task ->
// fixes http://issues.gradle.org/browse/GRADLE-1230
task.doFirst {
println ''
}
}
asciidoctor {
backend = 'html5'
sourceDir = file('doc')
......
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