Skip to content
Snippets Groups Projects
Commit 8b68c75d authored by Andre Brait's avatar Andre Brait
Browse files

Minor fixes

parent a025e266
No related branches found
No related tags found
No related merge requests found
...@@ -110,10 +110,10 @@ run { ...@@ -110,10 +110,10 @@ run {
// Delombok Task // Delombok Task
task delombok(type: DelombokTask, dependsOn: compileJava) { task delombok(type: DelombokTask, dependsOn: compileJava) {
ext.outputDir = file("$buildDir/delombok") ext.outputDir = file("$buildDir/delombok")
outputs.dir(outputDir) outputs.dir(ext.outputDir)
sourceSets.main.java.srcDirs.each { sourceSets.main.java.srcDirs.each {
inputs.dir(it) inputs.dir(it)
args(it, "-d", outputDir) args(it, "-d", ext.outputDir)
} }
} }
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment