unit test error: java.lang.IllegalAccessError: tried to access method

398 views
Skip to first unread message

Rick

unread,
Aug 21, 2018, 3:58:57 AM8/21/18
to Jenkins Developers
When I run the JUnit test, got an errors, like this:

Running in Durability level: MAX_SURVIVABILITY
[Pipeline] End of Pipeline
java.lang.IllegalAccessError: tried to access method org.jenkinsci.plugins.structs.describable.DescribableModel.of(Ljava/lang/Class;)Lorg/jenkinsci/plugins/structs/describable/DescribableModel; from class org.jenkinsci.plugins.workflow.cps.DSL
at org.jenkinsci.plugins.workflow.cps.DSL.parseArgs(DSL.java:460)
at org.jenkinsci.plugins.workflow.cps.DSL.invokeStep(DSL.java:183)
at org.jenkinsci.plugins.workflow.cps.DSL.invokeMethod(DSL.java:153)
at org.jenkinsci.plugins.workflow.cps.CpsScript.invokeMethod(CpsScript.java:122)
at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.call(PogoMetaClassSite.java:48)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:48)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:113)
at com.cloudbees.groovy.cps.sandbox.DefaultInvoker.methodCall(DefaultInvoker.java:20)
at org.jenkinsci.plugins.pipeline.modeldefinition.ModelInterpreter.executePostBuild(jar:file:/Users/mac/.m2/repository/org/jenkinsci/plugins/pipeline-model-definition/1.3.1/pipeline-model-definition-1.3.1.jar!/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy:718)
at org.jenkinsci.plugins.pipeline.modeldefinition.ModelInterpreter.call(jar:file:/Users/mac/.m2/repository/org/jenkinsci/plugins/pipeline-model-definition/1.3.1/pipeline-model-definition-1.3.1.jar!/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy:111)
at WorkflowScript.run(WorkflowScript:1)
at ___cps.transform___(Native Method)
at com.cloudbees.groovy.cps.impl.ContinuationGroup.methodCall(ContinuationGroup.java:57)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:109)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.cloudbees.groovy.cps.impl.ContinuationPtr$ContinuationImpl.receive(ContinuationPtr.java:72)
at com.cloudbees.groovy.cps.impl.ClosureBlock.eval(ClosureBlock.java:46)
at com.cloudbees.groovy.cps.Next.step(Next.java:83)
at com.cloudbees.groovy.cps.Continuable$1.call(Continuable.java:174)
at com.cloudbees.groovy.cps.Continuable$1.call(Continuable.java:163)
at org.codehaus.groovy.runtime.GroovyCategorySupport$ThreadCategoryInfo.use(GroovyCategorySupport.java:122)
at org.codehaus.groovy.runtime.GroovyCategorySupport.use(GroovyCategorySupport.java:261)
at com.cloudbees.groovy.cps.Continuable.run0(Continuable.java:163)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.access$101(SandboxContinuable.java:34)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.lambda$run0$0(SandboxContinuable.java:59)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox.runInSandbox(GroovySandbox.java:108)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.run0(SandboxContinuable.java:58)
at org.jenkinsci.plugins.workflow.cps.CpsThread.runNextChunk(CpsThread.java:174)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.run(CpsThreadGroup.java:332)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.access$200(CpsThreadGroup.java:83)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:244)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:232)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$2.call(CpsVmExecutorService.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:131)
at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:59)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Finished: FAILURE

Any tips are kindness, Thanks.

Jesse Glick

unread,
Aug 21, 2018, 10:19:23 AM8/21/18
to Jenkins Dev
On Tue, Aug 21, 2018 at 3:59 AM Rick <linux...@gmail.com> wrote:
> When I run the JUnit test, got an errors, like this:
>
> java.lang.IllegalAccessError: tried to access method org.jenkinsci.plugins.structs.describable.DescribableModel.of(Ljava/lang/Class;)Lorg/jenkinsci/plugins/structs/describable/DescribableModel; from class org.jenkinsci.plugins.workflow.cps.DSL
> at org.jenkinsci.plugins.workflow.cps.DSL.parseArgs(DSL.java:460)

Most likely you are using mismatched plugin versions, typically
visible (when using reasonably recent versions of Jenkins) by some
earlier warnings about some plugins being unloadable for dependency
reasons. If your parent POM is set to a reasonably recent version, you
should get a more straightforward build error much earlier, in the
`validate` phase.

arch

unread,
Aug 21, 2018, 10:26:54 AM8/21/18
to jenkin...@googlegroups.com
Yes, I just resolved this. The problem accused by the dependency of structs.

--
You received this message because you are subscribed to the Google Groups "Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr0PcqeQYAN-6yjUxas1WYHDy%3Di4tOMj7vFRaiqsviUFNg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages