Add compileAll task (#5493)

This commit is contained in:
Zoltan Kiss 2019-09-19 16:14:09 +01:00 committed by Dominic Fox
parent eaed69f26f
commit cdbb6d85cf

View File

@ -191,6 +191,10 @@ allprojects {
}
}
tasks.register('compileAll') { task ->
task.dependsOn tasks.withType(AbstractCompile)
}
tasks.withType(Jar) { task ->
// Includes War and Ear
manifest {