You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
buildSrc/src/main/groovy/aspectj/AspectJPlugin.groovy
uses javaCompileTask.deleteAllActions()
but this method is deprecated, this gives us a warning message when executing gradlew tasks.
We should now replace it so it won't give us future issues.
One approach can be: javaCompileTask.setActions Arrays.asList()
If we want to delete all actions, we can use the setActions method and pass an empty list
The text was updated successfully, but these errors were encountered:
raphaelDL
added a commit
to raphaelDL/spring-security
that referenced
this issue
Nov 23, 2018
buildSrc/src/main/groovy/aspectj/AspectJPlugin.groovy
uses
javaCompileTask.deleteAllActions()
but this method is deprecated, this gives us a warning message when executing gradlew tasks.
We should now replace it so it won't give us future issues.
One approach can be:
javaCompileTask.setActions Arrays.asList()
If we want to delete all actions, we can use the setActions method and pass an empty list
The text was updated successfully, but these errors were encountered: