Browse Source

Replace deprecated Gradle Task method in AspectJPlugin.groovy

This commit ensures that the method Task.deleteAllActions is not used

Fixes: gh-6128
Rafael Dominguez 6 năm trước cách đây
mục cha
commit
d1492afc0c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      buildSrc/src/main/groovy/aspectj/AspectJPlugin.groovy

+ 1 - 1
buildSrc/src/main/groovy/aspectj/AspectJPlugin.groovy

@@ -59,7 +59,7 @@ class AspectJPlugin implements Plugin<Project> {
 				aspectPath = project.configurations.aspectpath
 			}
 
-			javaCompileTask.deleteAllActions()
+			javaCompileTask.setActions Arrays.asList()
 			javaCompileTask.dependsOn ajCompileTask
 
 		}