Enable caching of bytebuddy cache. (#1764)
This commit is contained in:
parent
325238f128
commit
6ab51c1194
|
@ -68,6 +68,7 @@ public class ByteBuddyPluginConfigurator {
|
|||
private Task createLanguageTask(AbstractCompile compileTask, String name) {
|
||||
ByteBuddySimpleTask task = project.getTasks().create(name, ByteBuddySimpleTask.class);
|
||||
task.setGroup("Byte Buddy");
|
||||
task.getOutputs().cacheIf(unused -> true);
|
||||
|
||||
File classesDirectory = compileTask.getDestinationDir();
|
||||
File rawClassesDirectory =
|
||||
|
|
Loading…
Reference in New Issue