-
-
Notifications
You must be signed in to change notification settings - Fork 953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move all versions numbers to gradle.properties and update dependencies #13661
Conversation
…est compatible version
I'm getting an error from Unsupported class file major version 61
java.lang.IllegalArgumentException: Unsupported class file major version 61
at net.sf.cglib.asm.$ClassReader.<init>(ClassReader.java:195)
at net.sf.cglib.asm.$ClassReader.<init>(ClassReader.java:176)
at net.sf.cglib.asm.$ClassReader.<init>(ClassReader.java:162)
at net.sf.cglib.asm.$ClassReader.<init>(ClassReader.java:283)
at net.sf.cglib.core.DuplicatesPredicate.<init>(DuplicatesPredicate.java:93)
at net.sf.cglib.proxy.Enhancer.getMethods(Enhancer.java:557)
at net.sf.cglib.proxy.Enhancer.generateClass(Enhancer.java:575)
at net.sf.cglib.core.DefaultGeneratorStrategy.generate(DefaultGeneratorStrategy.java:25)
at net.sf.cglib.core.AbstractClassGenerator.generate(AbstractClassGenerator.java:332)
at net.sf.cglib.proxy.Enhancer.generate(Enhancer.java:492)
at net.sf.cglib.core.AbstractClassGenerator$ClassLoaderData$3.apply(AbstractClassGenerator.java:96)
at net.sf.cglib.core.AbstractClassGenerator$ClassLoaderData$3.apply(AbstractClassGenerator.java:94)
at net.sf.cglib.core.internal.LoadingCache$2.call(LoadingCache.java:54)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at net.sf.cglib.core.internal.LoadingCache.createEntry(LoadingCache.java:61)
at net.sf.cglib.core.internal.LoadingCache.get(LoadingCache.java:34)
at net.sf.cglib.core.AbstractClassGenerator$ClassLoaderData.get(AbstractClassGenerator.java:119)
at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:294)
at net.sf.cglib.proxy.Enhancer.createHelper(Enhancer.java:480)
at net.sf.cglib.proxy.Enhancer.createClass(Enhancer.java:337)
at org.spockframework.mock.runtime.CglibMockFactory.createMock(CglibMockFactory.java:34)
at org.spockframework.mock.runtime.ProxyBasedMockFactory.create(ProxyBasedMockFactory.java:45)
at org.spockframework.mock.runtime.JavaMockFactory.createInternal(JavaMockFactory.java:58)
at org.spockframework.mock.runtime.JavaMockFactory.create(JavaMockFactory.java:38)
at org.spockframework.mock.runtime.CompositeMockFactory.create(CompositeMockFactory.java:44)
at org.spockframework.lang.SpecInternals.createMock(SpecInternals.java:50)
at org.spockframework.lang.SpecInternals.createMockImpl(SpecInternals.java:305)
at org.spockframework.lang.SpecInternals.createMockImpl(SpecInternals.java:295)
at org.spockframework.lang.SpecInternals.MockImpl(SpecInternals.java:104)
at grails.build.logging.GrailsConsoleSpec.setup(GrailsConsoleSpec.groovy:53) It seems it is the update from It does not show in CI because the failing test is annotated with: @IgnoreIf({ env['CI'] || !GrailsConsole.instance.isAnsiEnabled() }) |
We are back to cglibVersion=2.2.2. GrailsConsoleSpec > "userInput - verify the reset marker at the end of the output" is failing. I have confirmed it also fails prior to these changes on the 7.0.x branch and on 6.2.x and 5.3.x branches
|
That's strange, "it works on my machine" 😄 There have been some problems with
This also works on my machine. Try it! |
cglib to bytebuddyVersion update is complete and this should be resolved. |
Move all versions numbers to gradle.properties and update dependencies to latest compatible version
Remove unused jaxb implementation