gradle: Don't cache script assembler

This commit is contained in:
Tyler Bochard
2019-07-25 05:05:36 +02:00
committed by Owain van Brakel
parent 26c83eae12
commit 329d402b26

View File

@@ -8,6 +8,8 @@ dependencies {
annotationProcessor group: 'org.eclipse.sisu', name: 'org.eclipse.sisu.inject', version: '0.3.3'
}
compileJava.outputs.upToDateWhen {false}
compileJava.doLast {
def path = sourceSets.main.runtimeClasspath
def loader = new URLClassLoader(path.collect { f -> f.toURL() } as URL[])