Re: Upgraded Plugins: Jenkins fails to start

2021-06-13 Thread Sverre Moe
No reason. We now use the Code Coverage API, so just uninstalled the JaCoCo 
Plugin.

tirsdag 8. juni 2021 kl. 21:12:51 UTC+2 skrev ullrich...@gmail.com:

> Is there a reason that you are still using the old and unmaintained JaCoCo 
> plugin and not the code-coverage-api plugin? The functionality should be 
> the same.
>
>
> On Tuesday, June 1, 2021 at 2:30:34 AM UTC+1 raould...@gmail.com wrote:
>
>> We stumbled on the same error after upgrading plugins on Jenkins last 
>> week.
>> Search in your Jenkins plugin directory for the jar file starting with 
>> the name: guice.
>> The results should only list one version of the guice jar.
>>
>> In our case it turned out that the Jacoco plugin came with a newer 
>> version of guice than the other plugins did, That caused this problem. We 
>> downgraded the Jacoco plugin and it worked again (from jacoco 3.2.0 back to 
>> 3.1.1 )
>>
>> Op zondag 23 mei 2021 om 19:55:03 UTC+2 schreef sverr...@gmail.com:
>>
>>> I have upgraded all the plugins, then restarted Jenkins.
>>> It fails to start properly.
>>> Any idea what the problem here is about?
>>>
>>> The website is loading, but shows the following Stacktrace
>>> java.lang.IllegalArgumentException: Unable to inject class 
>>> hudson.model.UserIdMapper   at 
>>> hudson.init.TaskMethodFinder.lookUp(TaskMethodFinder.java:125)
>>>  at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105) 
>>>  at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:175) 
>>>  at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:296) 
>>>  at jenkins.model.Jenkins$5.runTask(Jenkins.java:1131) 
>>>  at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:214) 
>>>  at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
>>>  at 
>>> jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
>>>  
>>>  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) 
>>> Caused: org.jvnet.hudson.reactor.ReactorException 
>>>  at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:282) 
>>>  at jenkins.InitReactorRunner.run(InitReactorRunner.java:49) 
>>>  at jenkins.model.Jenkins.executeReactor(Jenkins.java:1164)
>>>  at jenkins.model.Jenkins.(Jenkins.java:962) 
>>>  at hudson.model.Hudson.(Hudson.java:85) 
>>>  at hudson.model.Hudson.(Hudson.java:81) 
>>>  at hudson.WebAppMain$3.run(WebAppMain.java:295) 
>>> Caused: hudson.util.HudsonFailedToLoad at 
>>> hudson.WebAppMain$3.run(WebAppMain.java:312)
>>>
>>> The jenkins log output shows rthe following Exceptions:
>>> 2021-05-23 16:50:01.547+ [id=37]INFO
>>> jenkins.InitReactorRunner$1#onAttained: Listed all plugins
>>> 2021-05-23 16:50:09.041+ [id=36]SEVERE  
>>> h.ExtensionFinder$GuiceFinder#: Failed to create Guice container from 
>>> all the plugins
>>> java.lang.LinkageError: loader constraint violation: loader (instance of 
>>> hudson/PluginFirstClassLoader) previously initiated loading for a different 
>>> type with name "com/google/inject/Binder"
>>> at java.lang.ClassLoader.defineClass1(Native Method)
>>> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
>>> at 
>>> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1155)
>>> at 
>>> jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1326)
>>> at 
>>> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1377)
>>> at 
>>> jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1342)
>>> at 
>>> jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1095)
>>> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
>>> at 
>>> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:136)
>>> at 
>>> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:99)
>>> at 
>>> hudson.plugins.depgraph_view.model.graph.DependencyGraphModule.configure(DependencyGraphModule.java:49)
>>> at 
>>> com.google.inject.AbstractModule.configure(AbstractModule.java:62)
>>> at 
>>> com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:340)
>>> at com.google.inject.spi.Elements.getElements(Elements.java:110)
>>> at 
>>> com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:138)
>>> at 
>>> com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:104)
>>> at com.google.inject.Guice.createInjector(Guice.java:96)
>>> at com.google.inject.Guice.createInjector(Guice.java:73)
>>> at 
>>> hudson.ExtensionFinder$GuiceFinder.(ExtensionFinder.java:285)
>>> at 
>>> sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
>>> at 
>>> sun.reflect.NativeConstructorAccessorImpl.newIn

Re: Upgraded Plugins: Jenkins fails to start

2021-06-08 Thread Ullrich Hafner
Is there a reason that you are still using the old and unmaintained JaCoCo 
plugin and not the code-coverage-api plugin? The functionality should be the 
same.

> 
> On Tuesday, June 1, 2021 at 2:30:34 AM UTC+1 raould...@gmail.com 
>  wrote:
> We stumbled on the same error after upgrading plugins on Jenkins last week.
> Search in your Jenkins plugin directory for the jar file starting with the 
> name: guice.
> The results should only list one version of the guice jar.
> 
> In our case it turned out that the Jacoco plugin came with a newer version of 
> guice than the other plugins did, That caused this problem. We downgraded the 
> Jacoco plugin and it worked again (from jacoco 3.2.0 back to 3.1.1 )
> 
> Op zondag 23 mei 2021 om 19:55:03 UTC+2 schreef sverr...@gmail.com 
> :
> I have upgraded all the plugins, then restarted Jenkins.
> It fails to start properly.
> Any idea what the problem here is about?
> 
> The website is loading, but shows the following Stacktrace
> java.lang.IllegalArgumentException: Unable to inject class 
> hudson.model.UserIdMapper   at 
> hudson.init.TaskMethodFinder.lookUp(TaskMethodFinder.java:125)
>  at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105) 
>  at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:175) 
>  at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:296) 
>  at jenkins.model.Jenkins$5.runTask(Jenkins.java:1131) 
>  at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:214) 
>  at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
>  at 
> jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
>  
>  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) 
> Caused: org.jvnet.hudson.reactor.ReactorException 
>  at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:282) 
>  at jenkins.InitReactorRunner.run(InitReactorRunner.java:49) 
>  at jenkins.model.Jenkins.executeReactor(Jenkins.java:1164)
>  at jenkins.model.Jenkins.(Jenkins.java:962) 
>  at hudson.model.Hudson.(Hudson.java:85) 
>  at hudson.model.Hudson.(Hudson.java:81) 
>  at hudson.WebAppMain$3.run(WebAppMain.java:295) 
> Caused: hudson.util.HudsonFailedToLoad at 
> hudson.WebAppMain$3.run(WebAppMain.java:312)
> 
> The jenkins log output shows rthe following Exceptions:
> 2021-05-23 16:50:01.547+ [id=37]INFO
> jenkins.InitReactorRunner$1#onAttained: Listed all plugins
> 2021-05-23 16:50:09.041+ [id=36]SEVERE  
> h.ExtensionFinder$GuiceFinder#: Failed to create Guice container from 
> all the plugins
> java.lang.LinkageError: loader constraint violation: loader (instance of 
> hudson/PluginFirstClassLoader) previously initiated loading for a different 
> type with name "com/google/inject/Binder"
> at java.lang.ClassLoader.defineClass1(Native Method)
> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
> at 
> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1155)
> at 
> jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1326)
> at 
> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1377)
> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1342)
> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1095)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
> at 
> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:136)
> at 
> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:99)
> at 
> hudson.plugins.depgraph_view.model.graph.DependencyGraphModule.configure(DependencyGraphModule.java:49)
> at com.google.inject.AbstractModule.configure(AbstractModule.java:62)
> at 
> com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:340)
> at com.google.inject.spi.Elements.getElements(Elements.java:110)
> at 
> com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:138)
> at 
> com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:104)
> at com.google.inject.Guice.createInjector(Guice.java:96)
> at com.google.inject.Guice.createInjector(Guice.java:73)
> at hudson.ExtensionFinder$GuiceFinder.(ExtensionFinder.java:285)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
> Method)
> at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
> at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
> at java.lang.Class.newInstance(Class.java:442)
> at net.java.sezpoz

Re: Upgraded Plugins: Jenkins fails to start

2021-06-08 Thread jn...@cloudbees.com
There is a PR to the jacoco plugin that should fix this.

https://github.com/jenkinsci/jacoco-plugin/pull/151  along with a build of 
that 
https://ci.jenkins.io/job/Plugins/job/jacoco-plugin/job/PR-151/lastStableBuild/artifact/target/jacoco.hpi
 
for people who have been hit and want a fix (or to test it) before it gets 
released.

/James

On Tuesday, June 1, 2021 at 2:30:34 AM UTC+1 raould...@gmail.com wrote:

> We stumbled on the same error after upgrading plugins on Jenkins last week.
> Search in your Jenkins plugin directory for the jar file starting with the 
> name: guice.
> The results should only list one version of the guice jar.
>
> In our case it turned out that the Jacoco plugin came with a newer version 
> of guice than the other plugins did, That caused this problem. We 
> downgraded the Jacoco plugin and it worked again (from jacoco 3.2.0 back to 
> 3.1.1 )
>
> Op zondag 23 mei 2021 om 19:55:03 UTC+2 schreef sverr...@gmail.com:
>
>> I have upgraded all the plugins, then restarted Jenkins.
>> It fails to start properly.
>> Any idea what the problem here is about?
>>
>> The website is loading, but shows the following Stacktrace
>> java.lang.IllegalArgumentException: Unable to inject class 
>> hudson.model.UserIdMapper   at 
>> hudson.init.TaskMethodFinder.lookUp(TaskMethodFinder.java:125)
>>  at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105) 
>>  at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:175) 
>>  at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:296) 
>>  at jenkins.model.Jenkins$5.runTask(Jenkins.java:1131) 
>>  at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:214) 
>>  at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
>>  at 
>> jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
>>  
>>  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) 
>> Caused: org.jvnet.hudson.reactor.ReactorException 
>>  at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:282) 
>>  at jenkins.InitReactorRunner.run(InitReactorRunner.java:49) 
>>  at jenkins.model.Jenkins.executeReactor(Jenkins.java:1164)
>>  at jenkins.model.Jenkins.(Jenkins.java:962) 
>>  at hudson.model.Hudson.(Hudson.java:85) 
>>  at hudson.model.Hudson.(Hudson.java:81) 
>>  at hudson.WebAppMain$3.run(WebAppMain.java:295) 
>> Caused: hudson.util.HudsonFailedToLoad at 
>> hudson.WebAppMain$3.run(WebAppMain.java:312)
>>
>> The jenkins log output shows rthe following Exceptions:
>> 2021-05-23 16:50:01.547+ [id=37]INFO
>> jenkins.InitReactorRunner$1#onAttained: Listed all plugins
>> 2021-05-23 16:50:09.041+ [id=36]SEVERE  
>> h.ExtensionFinder$GuiceFinder#: Failed to create Guice container from 
>> all the plugins
>> java.lang.LinkageError: loader constraint violation: loader (instance of 
>> hudson/PluginFirstClassLoader) previously initiated loading for a different 
>> type with name "com/google/inject/Binder"
>> at java.lang.ClassLoader.defineClass1(Native Method)
>> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
>> at 
>> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1155)
>> at 
>> jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1326)
>> at 
>> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1377)
>> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1342)
>> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1095)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
>> at 
>> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:136)
>> at 
>> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:99)
>> at 
>> hudson.plugins.depgraph_view.model.graph.DependencyGraphModule.configure(DependencyGraphModule.java:49)
>> at 
>> com.google.inject.AbstractModule.configure(AbstractModule.java:62)
>> at 
>> com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:340)
>> at com.google.inject.spi.Elements.getElements(Elements.java:110)
>> at 
>> com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:138)
>> at 
>> com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:104)
>> at com.google.inject.Guice.createInjector(Guice.java:96)
>> at com.google.inject.Guice.createInjector(Guice.java:73)
>> at 
>> hudson.ExtensionFinder$GuiceFinder.(ExtensionFinder.java:285)
>> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
>> Method)
>> at 
>> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
>> at 
>> sun.reflect.DelegatingCon

Re: Upgraded Plugins: Jenkins fails to start

2021-05-31 Thread Raoul de Haard
We stumbled on the same error after upgrading plugins on Jenkins last week.
Search in your Jenkins plugin directory for the jar file starting with the 
name: guice.
The results should only list one version of the guice jar.

In our case it turned out that the Jacoco plugin came with a newer version 
of guice than the other plugins did, That caused this problem. We 
downgraded the Jacoco plugin and it worked again (from jacoco 3.2.0 back to 
3.1.1 )

Op zondag 23 mei 2021 om 19:55:03 UTC+2 schreef sverr...@gmail.com:

> I have upgraded all the plugins, then restarted Jenkins.
> It fails to start properly.
> Any idea what the problem here is about?
>
> The website is loading, but shows the following Stacktrace
> java.lang.IllegalArgumentException: Unable to inject class 
> hudson.model.UserIdMapper   at 
> hudson.init.TaskMethodFinder.lookUp(TaskMethodFinder.java:125)
>  at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105) 
>  at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:175) 
>  at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:296) 
>  at jenkins.model.Jenkins$5.runTask(Jenkins.java:1131) 
>  at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:214) 
>  at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
>  at 
> jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
>  
>  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) 
> Caused: org.jvnet.hudson.reactor.ReactorException 
>  at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:282) 
>  at jenkins.InitReactorRunner.run(InitReactorRunner.java:49) 
>  at jenkins.model.Jenkins.executeReactor(Jenkins.java:1164)
>  at jenkins.model.Jenkins.(Jenkins.java:962) 
>  at hudson.model.Hudson.(Hudson.java:85) 
>  at hudson.model.Hudson.(Hudson.java:81) 
>  at hudson.WebAppMain$3.run(WebAppMain.java:295) 
> Caused: hudson.util.HudsonFailedToLoad at 
> hudson.WebAppMain$3.run(WebAppMain.java:312)
>
> The jenkins log output shows rthe following Exceptions:
> 2021-05-23 16:50:01.547+ [id=37]INFO
> jenkins.InitReactorRunner$1#onAttained: Listed all plugins
> 2021-05-23 16:50:09.041+ [id=36]SEVERE  
> h.ExtensionFinder$GuiceFinder#: Failed to create Guice container from 
> all the plugins
> java.lang.LinkageError: loader constraint violation: loader (instance of 
> hudson/PluginFirstClassLoader) previously initiated loading for a different 
> type with name "com/google/inject/Binder"
> at java.lang.ClassLoader.defineClass1(Native Method)
> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
> at 
> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1155)
> at 
> jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1326)
> at 
> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1377)
> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1342)
> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1095)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
> at 
> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:136)
> at 
> com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:99)
> at 
> hudson.plugins.depgraph_view.model.graph.DependencyGraphModule.configure(DependencyGraphModule.java:49)
> at 
> com.google.inject.AbstractModule.configure(AbstractModule.java:62)
> at 
> com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:340)
> at com.google.inject.spi.Elements.getElements(Elements.java:110)
> at 
> com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:138)
> at 
> com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:104)
> at com.google.inject.Guice.createInjector(Guice.java:96)
> at com.google.inject.Guice.createInjector(Guice.java:73)
> at 
> hudson.ExtensionFinder$GuiceFinder.(ExtensionFinder.java:285)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
> Method)
> at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
> at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
> at java.lang.Class.newInstance(Class.java:442)
> at net.java.sezpoz.IndexItem.instance(IndexItem.java:181)
> at hudson.ExtensionFinder$Sezpoz._find(ExtensionFinder.java:703)
> at hudson.ExtensionFinder$Sezpoz.find(ExtensionFinder.java:689)
> at 
> hudson.ClassicPluginStrategy.findComponents(ClassicPluginStrategy.java:349

Upgraded Plugins: Jenkins fails to start

2021-05-23 Thread Sverre Moe
I have upgraded all the plugins, then restarted Jenkins.
It fails to start properly.
Any idea what the problem here is about?

The website is loading, but shows the following Stacktrace
java.lang.IllegalArgumentException: Unable to inject class 
hudson.model.UserIdMapper   at 
hudson.init.TaskMethodFinder.lookUp(TaskMethodFinder.java:125)
 at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105) 
 at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:175) 
 at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:296) 
 at jenkins.model.Jenkins$5.runTask(Jenkins.java:1131) 
 at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:214) 
 at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
 at 
jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
 
 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) 
Caused: org.jvnet.hudson.reactor.ReactorException 
 at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:282) 
 at jenkins.InitReactorRunner.run(InitReactorRunner.java:49) 
 at jenkins.model.Jenkins.executeReactor(Jenkins.java:1164)
 at jenkins.model.Jenkins.(Jenkins.java:962) 
 at hudson.model.Hudson.(Hudson.java:85) 
 at hudson.model.Hudson.(Hudson.java:81) 
 at hudson.WebAppMain$3.run(WebAppMain.java:295) 
Caused: hudson.util.HudsonFailedToLoad at 
hudson.WebAppMain$3.run(WebAppMain.java:312)

The jenkins log output shows rthe following Exceptions:
2021-05-23 16:50:01.547+ [id=37]INFO
jenkins.InitReactorRunner$1#onAttained: Listed all plugins
2021-05-23 16:50:09.041+ [id=36]SEVERE  
h.ExtensionFinder$GuiceFinder#: Failed to create Guice container from 
all the plugins
java.lang.LinkageError: loader constraint violation: loader (instance of 
hudson/PluginFirstClassLoader) previously initiated loading for a different 
type with name "com/google/inject/Binder"
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
at 
jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1155)
at 
jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1326)
at 
jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1377)
at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1342)
at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1095)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at 
com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:136)
at 
com.google.inject.multibindings.Multibinder.newSetBinder(Multibinder.java:99)
at 
hudson.plugins.depgraph_view.model.graph.DependencyGraphModule.configure(DependencyGraphModule.java:49)
at 
com.google.inject.AbstractModule.configure(AbstractModule.java:62)
at 
com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:340)
at com.google.inject.spi.Elements.getElements(Elements.java:110)
at 
com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:138)
at 
com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:104)
at com.google.inject.Guice.createInjector(Guice.java:96)
at com.google.inject.Guice.createInjector(Guice.java:73)
at 
hudson.ExtensionFinder$GuiceFinder.(ExtensionFinder.java:285)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
Method)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at java.lang.Class.newInstance(Class.java:442)
at net.java.sezpoz.IndexItem.instance(IndexItem.java:181)
at hudson.ExtensionFinder$Sezpoz._find(ExtensionFinder.java:703)
at hudson.ExtensionFinder$Sezpoz.find(ExtensionFinder.java:689)
at 
hudson.ClassicPluginStrategy.findComponents(ClassicPluginStrategy.java:349)
at hudson.ExtensionList.load(ExtensionList.java:381)
at hudson.ExtensionList.ensureLoaded(ExtensionList.java:317)
at hudson.ExtensionList.getComponents(ExtensionList.java:183)
at 
jenkins.model.Jenkins$6.onInitMilestoneAttained(Jenkins.java:1161)
at jenkins.InitReactorRunner$1.onAttained(InitReactorRunner.java:84)
at 
org.jvnet.hudson.reactor.ReactorListener$Aggregator.lambda$onAttained$3(ReactorListener.java:102)
at 
org.jvnet.hudson.reactor.ReactorListener$Aggregator.run(ReactorListener.java:109)
at 
org.jvnet.hudson.reactor.ReactorListener$Aggregator.onAttained(ReactorListener.java:102)
at org.jvnet.hudson.reacto