anyone else having issues with org.grails.plugins:...
# questions
d
anyone else having issues with org.grails.pluginsspring security core6.1.2
Copy code
Description:

An attempt was made to call a method that does not exist. The attempt was made from the following location:

    grails.plugin.springsecurity.web.access.intercept.AnnotationFilterInvocationDefinition.findActions(AnnotationFilterInvocationDefinition.groovy:497)

The following method did not exist:

    'java.util.List org.codehaus.groovy.runtime.DefaultGroovyMethods.findAll(java.lang.Object[], groovy.lang.Closure)'

The calling method's class, grails.plugin.springsecurity.web.access.intercept.AnnotationFilterInvocationDefinition, was loaded from the following location:

    jar:file:/Users/dylankolson/.gradle/caches/modules-2/files-2.1/org.grails.plugins/spring-security-core/6.1.2/fe601e34c816de4946d257b8110156cb8bc5116a/spring-security-core-6.1.2.jar!/grails/plugin/springsecurity/web/access/intercept/AnnotationFilterInvocationDefinition.class

The called method's class, org.codehaus.groovy.runtime.DefaultGroovyMethods, is available from the following locations:

    jar:file:/Users/dylankolson/.gradle/caches/modules-2/files-2.1/org.codehaus.groovy/groovy/3.0.11/b1759d82dcf4f57299c8555a76330532d2d77b47/groovy-3.0.11.jar!/org/codehaus/groovy/runtime/DefaultGroovyMethods.class
    jar:file:/Users/dylankolson/.gradle/caches/modules-2/files-2.1/org.codehaus.groovy/groovy-all/2.4.7/c5371aaa20bcdca1175d9477fc0811f4fd99b68a/groovy-all-2.4.7.jar!/org/codehaus/groovy/runtime/DefaultGroovyMethods.class
👀 1
j
Assuming you are running Grails 6.2.x You have two versions of groovy, 3.0.11 and 2.4.7. Track down where they are coming from and update to 3.0.23 or remove the groovyVersion and grails-bom will set it to 3.0.23. That is where I would start. Comparing your app to one generated from https://start.grails.org/ may also help