matthiasblaesing commented on pull request #3326: URL: https://github.com/apache/netbeans/pull/3326#issuecomment-974315777
I managed to get a full stack trace from the error and I think this is the core part: > [exec] Caused by: java.lang.AbstractMethodError: Receiver class org.netbeans.modules.gradle.tooling.NbProjectInfoBuilder does not define or inherit an implementation of the resolved method 'abstract java.lang.Object getProperty(java.lang.String)' of interface groovy.lang.GroovyObject. Fulltrace: [stacktrace.txt](https://github.com/apache/netbeans/files/7572297/stacktrace.txt) I see a structural change here: https://docs.groovy-lang.org/docs/groovy-3.0.9/html/api/groovy/lang/GroovyObject.html https://docs.groovy-lang.org/docs/groovy-2.5.15/html/api/groovy/lang/GroovyObject.html In groovy 3 the methods are declared as default methods. My gut feeling is, that our groovy code is built against groovy 3, but is executed with a groovy 2 runtime. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
