Adding the Git server plugin cause the Jenkins server to fail on next restart.
      Jenkins shows the following error:
      hudson.util.HudsonFailedToLoad: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: java.lang.reflect.InvocationTargetException
      at hudson.WebAppMain$3.run(WebAppMain.java:234)
      Caused by: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: java.lang.reflect.InvocationTargetException
      at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:269)
      at jenkins.InitReactorRunner.run(InitReactorRunner.java:44)
      at jenkins.model.Jenkins.executeReactor(Jenkins.java:908)
      at jenkins.model.Jenkins.<init>(Jenkins.java:807)
      at hudson.model.Hudson.<init>(Hudson.java:82)
      at hudson.model.Hudson.<init>(Hudson.java:78)
      at hudson.WebAppMain$3.run(WebAppMain.java:222)
      Caused by: java.lang.Error: java.lang.reflect.InvocationTargetException
      at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:109)
      at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:169)
      at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:282)
      at jenkins.model.Jenkins$7.runTask(Jenkins.java:897)
      at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:210)
      at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1146)
      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
      at java.lang.Thread.run(Thread.java:701)
      Caused by: java.lang.reflect.InvocationTargetException
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      at java.lang.reflect.Method.invoke(Method.java:622)
      at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105)
      ... 8 more
      Caused by: java.lang.NullPointerException
      at hudson.plugins.git.GitTool.onLoaded(GitTool.java:105)
      ... 13 more

          [JENKINS-21163] Git server plugin blocks Jenkins startup

          More Info:
          System that does NOT work:
          jenkins-1a
          java -version
          java version "1.6.0_27"
          OpenJDK Runtime Environment (IcedTea6 1.12.6) (6b27-1.12.6-1ubuntu0.12.04.4)
          OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode)

          git --version
          git version 1.7.9.5

          Git Plugin 2.0
          This plugin allows use of Git as a build SCM. a recent Git runtime is required (1.7 recommended). Base feature may work on earlier versions, but can't guarantee.

          System that does work:
          jenkins-1b
          java -version
          java version "1.6.0_24"
          OpenJDK Runtime Environment (IcedTea6 1.11.14) (amazon-65.1.11.14.57.amzn1-x86_64)
          OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode)

          git --version
          git version 1.8.3.1

          Jenkins GIT plugin 2.0
          This plugin integrates GIT with Jenkins.

          C. Alex Reober added a comment - More Info: System that does NOT work: jenkins-1a java -version java version "1.6.0_27" OpenJDK Runtime Environment (IcedTea6 1.12.6) (6b27-1.12.6-1ubuntu0.12.04.4) OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode) git --version git version 1.7.9.5 Git Plugin 2.0 This plugin allows use of Git as a build SCM. a recent Git runtime is required (1.7 recommended). Base feature may work on earlier versions, but can't guarantee. System that does work: jenkins-1b java -version java version "1.6.0_24" OpenJDK Runtime Environment (IcedTea6 1.11.14) (amazon-65.1.11.14.57.amzn1-x86_64) OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode) git --version git version 1.8.3.1 Jenkins GIT plugin 2.0 This plugin integrates GIT with Jenkins.

          Mark Waite added a comment -

          The source code for GitTool says that the onLoaded method is used to mirgate from older plugin versions to newer versions. Does your problem machine have an older "base version" of the Git plugin which may be failing to upgrade?

          The null pointer exception in the stack trace seems to indicate that Jenkins was unable to get a descriptor for the GitTool class. I'm just guessing, but maybe the configuration on the failing machine is different than the working machine?

          Alternately, is there a corrupt or misconfigured file on the failing machine which is making it so that Jenkins cannot construct a workable instance of a "GitTool"?

          Mark Waite added a comment - The source code for GitTool says that the onLoaded method is used to mirgate from older plugin versions to newer versions. Does your problem machine have an older "base version" of the Git plugin which may be failing to upgrade? The null pointer exception in the stack trace seems to indicate that Jenkins was unable to get a descriptor for the GitTool class. I'm just guessing, but maybe the configuration on the failing machine is different than the working machine? Alternately, is there a corrupt or misconfigured file on the failing machine which is making it so that Jenkins cannot construct a workable instance of a "GitTool"?

          Mark Waite added a comment - - edited

          I've now seen the same problem. Some weeks ago, I installed the git-userContent plugin and had encountered some problem from the git-server plugin on which the git-userContent plugin depends. I removed the git-server plugin, restarted my Jenkins server, and the server returned to normal.

          Could you remove git-server and git-server.*pi from the Jenkins plugins directory to see if yours is the same problem as mine?

          If it is, then there is probably some incompatibility between recent versions of the git-client-plugin and the git-server plugin. You don't need the git-server plugin to use Git as an SCM tool in Jenkins, so it is safe to remove it. You do need the git-server plugin if you're allowing users to submit changes to your Jenkins userContent directory through git.

          If removing git-server as a plugin resolves the issue, then we'll need to investigate the incompatibility between them and fix one or both of the plugins to resolve the incompatibility.

          Mark Waite added a comment - - edited I've now seen the same problem. Some weeks ago, I installed the git-userContent plugin and had encountered some problem from the git-server plugin on which the git-userContent plugin depends. I removed the git-server plugin, restarted my Jenkins server, and the server returned to normal. Could you remove git-server and git-server.*pi from the Jenkins plugins directory to see if yours is the same problem as mine? If it is, then there is probably some incompatibility between recent versions of the git-client-plugin and the git-server plugin. You don't need the git-server plugin to use Git as an SCM tool in Jenkins, so it is safe to remove it. You do need the git-server plugin if you're allowing users to submit changes to your Jenkins userContent directory through git. If removing git-server as a plugin resolves the issue, then we'll need to investigate the incompatibility between them and fix one or both of the plugins to resolve the incompatibility.

          Yes that was my initial solution.

          C. Alex Reober added a comment - Yes that was my initial solution.

          Mark Waite added a comment -

          I've submitted a pull request that seems to resolve the Jenkins startup problem https://github.com/jenkinsci/git-server-plugin/pull/2 . However, I was unable to use the git-server-plugin with the git-userContent-plugin, so I can't confirm that it works correctly.

          I can confirm that it does not seem to be broken the same way it was broken before.

          Mark Waite added a comment - I've submitted a pull request that seems to resolve the Jenkins startup problem https://github.com/jenkinsci/git-server-plugin/pull/2 . However, I was unable to use the git-server-plugin with the git-userContent-plugin, so I can't confirm that it works correctly. I can confirm that it does not seem to be broken the same way it was broken before.

          Code changed in jenkins
          User: Jesse Glick
          Path:
          pom.xml
          http://jenkins-ci.org/commit/git-server-plugin/9aced38a2715556eb2a05c809d7e87f9b14e71ed
          Log:
          Merge pull request #2 from MarkEWaite/master-JENKINS-21163-startup-fails

          [FIXED JENKINS-21163] Update pom dependencies to match git plugin - JGit and Jenkins

          Compare: https://github.com/jenkinsci/git-server-plugin/compare/ed1627e11abc...9aced38a2715

          SCM/JIRA link daemon added a comment - Code changed in jenkins User: Jesse Glick Path: pom.xml http://jenkins-ci.org/commit/git-server-plugin/9aced38a2715556eb2a05c809d7e87f9b14e71ed Log: Merge pull request #2 from MarkEWaite/master- JENKINS-21163 -startup-fails [FIXED JENKINS-21163] Update pom dependencies to match git plugin - JGit and Jenkins Compare: https://github.com/jenkinsci/git-server-plugin/compare/ed1627e11abc...9aced38a2715

          Mark Waite added a comment -

          This bug is fixed by the release of git-server 1.3. A new release of the git-userContent plugin will be required in order to reconnect it with the base git-server plugin.

          Mark Waite added a comment - This bug is fixed by the release of git-server 1.3. A new release of the git-userContent plugin will be required in order to reconnect it with the base git-server plugin.

          Yaniv Kaul added a comment -

          Clean installation of 1.569, from RPM, with some plugins (but not git-userContent for example), without ANY job that uses git configured, without any nodes configured:
          hudson.util.HudsonFailedToLoad: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: java.lang.reflect.InvocationTargetException
          at hudson.WebAppMain$3.run(WebAppMain.java:234)
          Caused by: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: java.lang.reflect.InvocationTargetException
          at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:269)
          at jenkins.InitReactorRunner.run(InitReactorRunner.java:44)
          at jenkins.model.Jenkins.executeReactor(Jenkins.java:896)
          at jenkins.model.Jenkins.<init>(Jenkins.java:795)
          at hudson.model.Hudson.<init>(Hudson.java:82)
          at hudson.model.Hudson.<init>(Hudson.java:78)
          at hudson.WebAppMain$3.run(WebAppMain.java:222)
          Caused by: java.lang.Error: java.lang.reflect.InvocationTargetException
          at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:109)
          at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:169)
          at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:282)
          at jenkins.model.Jenkins$7.runTask(Jenkins.java:885)
          at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:210)
          at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
          at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
          at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
          at java.lang.Thread.run(Thread.java:745)
          Caused by: java.lang.reflect.InvocationTargetException
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke(Method.java:606)
          at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105)
          ... 8 more
          Caused by: java.lang.NullPointerException
          at hudson.plugins.git.GitTool.onLoaded(GitTool.java:105)
          ... 13 more

          Plugins:
          [root@lgdrm909 plugins]# ls -l *.jpi
          rw-rr- 1 jenkins jenkins 129299 Jun 24 16:41 ansicolor.jpi
          rw-rr- 1 jenkins jenkins 112560 Jun 23 23:52 antisamy-markup-formatter.jpi
          rw-rr- 1 jenkins jenkins 90421 Jun 23 23:47 ant.jpi
          rw-rr- 1 jenkins jenkins 9611 Jun 24 16:41 build-name-setter.jpi
          rw-rr- 1 jenkins jenkins 208973 Jun 24 16:45 build-user-vars-plugin.jpi
          rw-rr- 1 jenkins jenkins 16076 Jun 24 16:43 build-view-column.jpi
          rw-rr- 1 jenkins jenkins 9195 Jun 24 16:43 build-with-parameters.jpi
          rw-rr- 1 jenkins jenkins 6831 Jun 24 16:41 built-on-column.jpi
          rw-rr- 1 jenkins jenkins 541266 Jun 24 16:40 categorized-view.jpi
          rw-rr- 1 jenkins jenkins 1452793 Jun 24 16:41 cluster-stats.jpi
          rw-rr- 1 jenkins jenkins 42158 Jun 24 16:43 compact-columns.jpi
          rw-rr- 1 jenkins jenkins 36810 Jun 24 16:41 conditional-buildstep.jpi
          rw-rr- 1 jenkins jenkins 13785 Jun 24 16:43 configure-job-column-plugin.jpi
          rw-rr- 1 jenkins jenkins 75074 Jun 24 16:43 console-column-plugin.jpi
          rw-rr- 1 jenkins jenkins 48682 Jun 24 16:41 console-tail.jpi
          rw-rr- 1 jenkins jenkins 93337 Jun 24 16:43 copyartifact.jpi
          rw-rr- 1 jenkins jenkins 61449 Jun 24 16:43 copy-to-slave.jpi
          rw-rr- 1 jenkins jenkins 6528 Jun 24 16:43 countjobs-viewstabbar.jpi
          rw-rr- 1 jenkins jenkins 370803 Jun 23 23:52 credentials.jpi
          rw-rr- 1 jenkins jenkins 929368 Jun 23 23:52 cvs.jpi
          rw-rr- 1 jenkins jenkins 599851 Jun 24 16:41 dashboard-view.jpi
          rw-rr- 1 jenkins jenkins 8126 Jun 24 16:45 delete-log-plugin.jpi
          rw-rr- 1 jenkins jenkins 18344 Jun 24 16:43 description-column-plugin.jpi
          rw-rr- 1 jenkins jenkins 11095865 Jun 24 16:43 email-ext.jpi
          rw-rr- 1 jenkins jenkins 47379 Jun 24 16:43 extended-choice-parameter.jpi
          rw-rr- 1 jenkins jenkins 95225 Jun 24 16:43 extensible-choice-parameter.jpi
          rw-rr- 1 jenkins jenkins 53839 Jun 23 23:47 external-monitor-job.jpi
          rw-rr- 1 jenkins jenkins 149536 Jun 24 16:43 extra-columns.jpi
          rw-rr- 1 jenkins jenkins 22576 Jun 24 16:40 fail-the-build-plugin.jpi
          rw-rr- 1 jenkins jenkins 26501 Jun 24 16:43 favorite.jpi
          rw-rr- 1 jenkins jenkins 11565 Jun 24 16:45 favorite-view.jpi
          rw-rr- 1 jenkins jenkins 3082917 Jun 24 16:45 git-client.jpi
          rw-rr- 1 jenkins jenkins 4629487 Jun 24 16:44 git.jpi
          rw-rr- 1 jenkins jenkins 111369 Jun 24 16:41 greenballs.jpi
          rw-rr- 1 jenkins jenkins 44721 Jun 24 16:43 groovy.jpi
          rw-rr- 1 jenkins jenkins 37906 Jun 24 16:43 groovy-postbuild.jpi
          rw-rr- 1 jenkins jenkins 38073 Jun 23 23:47 javadoc.jpi
          rw-rr- 1 jenkins jenkins 149746 Jun 24 16:44 jobConfigHistory.jpi
          rw-rr- 1 jenkins jenkins 1672427 Jun 24 16:40 jquery.jpi
          rw-rr- 1 jenkins jenkins 66770 Jun 23 23:52 ldap.jpi
          rw-rr- 1 jenkins jenkins 126050 Jun 23 23:47 mailer.jpi
          rw-rr- 1 jenkins jenkins 392494 Jun 23 23:52 mapdb-api.jpi
          rw-rr- 1 jenkins jenkins 80756 Jun 23 23:52 matrix-auth.jpi
          rw-rr- 1 jenkins jenkins 22704 Jun 24 09:49 matrix-combinations-parameter.jpi
          rw-rr- 1 jenkins jenkins 236414 Jun 23 23:47 matrix-project.jpi
          rw-rr- 1 jenkins jenkins 34153 Jun 24 16:43 matrix-reloaded.jpi
          rw-rr- 1 jenkins jenkins 10770184 Jun 23 23:47 maven-plugin.jpi
          rw-rr- 1 jenkins jenkins 1281955 Jun 24 09:57 metrics.jpi
          rw-rr- 1 jenkins jenkins 2897068 Jun 24 16:40 monitoring.jpi
          rw-rr- 1 jenkins jenkins 321451 Jun 24 16:40 nodelabelparameter.jpi
          rw-rr- 1 jenkins jenkins 10829 Jun 24 16:43 nodenamecolumn.jpi
          rw-rr- 1 jenkins jenkins 187673 Jun 24 16:45 nodeofflinenotification.jpi
          rw-rr- 1 jenkins jenkins 9419 Jun 24 16:43 offlineonfailure-plugin.jpi
          rw-rr- 1 jenkins jenkins 127172 Jun 24 16:45 ownership.jpi
          rw-rr- 1 jenkins jenkins 1030550 Jun 23 23:47 pam-auth.jpi
          rw-rr- 1 jenkins jenkins 21282 Jun 24 16:41 postbuild-task.jpi
          rw-rr- 1 jenkins jenkins 6581 Jun 24 16:43 powershell.jpi
          rw-rr- 1 jenkins jenkins 15020 Jun 24 16:41 progress-bar-column-plugin.jpi
          rw-rr- 1 jenkins jenkins 18022 Jun 24 16:43 project-stats-plugin.jpi
          rw-rr- 1 jenkins jenkins 7807 Jun 24 16:44 python.jpi
          rw-rr- 1 jenkins jenkins 48910 Jun 24 16:44 rebuild.jpi
          rw-rr- 1 jenkins jenkins 9817 Jun 24 16:40 regexemail.jpi
          rw-rr- 1 jenkins jenkins 19016644 Jun 24 16:45 ruby-runtime.jpi
          rw-rr- 1 jenkins jenkins 145650 Jun 24 16:44 run-condition.jpi
          rw-rr- 1 jenkins jenkins 75264 Jun 23 23:52 scm-api.jpi
          rw-rr- 1 jenkins jenkins 79972 Jun 23 23:52 ssh-credentials.jpi
          rw-rr- 1 jenkins jenkins 202469 Jun 24 16:43 ssh.jpi
          rw-rr- 1 jenkins jenkins 66901 Jun 23 23:52 ssh-slaves.jpi
          rw-rr- 1 jenkins jenkins 4758697 Jun 23 23:52 subversion.jpi
          rw-rr- 1 jenkins jenkins 539374 Jun 24 09:57 support-core.jpi
          rw-rr- 1 jenkins jenkins 24523 Jun 24 16:41 token-macro.jpi
          rw-rr- 1 jenkins jenkins 54234 Jun 23 23:52 translation.jpi
          rw-rr- 1 jenkins jenkins 313873 Jun 24 16:40 view-job-filters.jpi
          rw-rr- 1 jenkins jenkins 949638 Jun 23 23:47 windows-slaves.jpi

          Yaniv Kaul added a comment - Clean installation of 1.569, from RPM, with some plugins (but not git-userContent for example), without ANY job that uses git configured, without any nodes configured: hudson.util.HudsonFailedToLoad: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: java.lang.reflect.InvocationTargetException at hudson.WebAppMain$3.run(WebAppMain.java:234) Caused by: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: java.lang.reflect.InvocationTargetException at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:269) at jenkins.InitReactorRunner.run(InitReactorRunner.java:44) at jenkins.model.Jenkins.executeReactor(Jenkins.java:896) at jenkins.model.Jenkins.<init>(Jenkins.java:795) at hudson.model.Hudson.<init>(Hudson.java:82) at hudson.model.Hudson.<init>(Hudson.java:78) at hudson.WebAppMain$3.run(WebAppMain.java:222) Caused by: java.lang.Error: java.lang.reflect.InvocationTargetException at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:109) at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:169) at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:282) at jenkins.model.Jenkins$7.runTask(Jenkins.java:885) at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:210) at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:745) Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:105) ... 8 more Caused by: java.lang.NullPointerException at hudson.plugins.git.GitTool.onLoaded(GitTool.java:105) ... 13 more Plugins: [root@lgdrm909 plugins] # ls -l *.jpi rw-r r - 1 jenkins jenkins 129299 Jun 24 16:41 ansicolor.jpi rw-r r - 1 jenkins jenkins 112560 Jun 23 23:52 antisamy-markup-formatter.jpi rw-r r - 1 jenkins jenkins 90421 Jun 23 23:47 ant.jpi rw-r r - 1 jenkins jenkins 9611 Jun 24 16:41 build-name-setter.jpi rw-r r - 1 jenkins jenkins 208973 Jun 24 16:45 build-user-vars-plugin.jpi rw-r r - 1 jenkins jenkins 16076 Jun 24 16:43 build-view-column.jpi rw-r r - 1 jenkins jenkins 9195 Jun 24 16:43 build-with-parameters.jpi rw-r r - 1 jenkins jenkins 6831 Jun 24 16:41 built-on-column.jpi rw-r r - 1 jenkins jenkins 541266 Jun 24 16:40 categorized-view.jpi rw-r r - 1 jenkins jenkins 1452793 Jun 24 16:41 cluster-stats.jpi rw-r r - 1 jenkins jenkins 42158 Jun 24 16:43 compact-columns.jpi rw-r r - 1 jenkins jenkins 36810 Jun 24 16:41 conditional-buildstep.jpi rw-r r - 1 jenkins jenkins 13785 Jun 24 16:43 configure-job-column-plugin.jpi rw-r r - 1 jenkins jenkins 75074 Jun 24 16:43 console-column-plugin.jpi rw-r r - 1 jenkins jenkins 48682 Jun 24 16:41 console-tail.jpi rw-r r - 1 jenkins jenkins 93337 Jun 24 16:43 copyartifact.jpi rw-r r - 1 jenkins jenkins 61449 Jun 24 16:43 copy-to-slave.jpi rw-r r - 1 jenkins jenkins 6528 Jun 24 16:43 countjobs-viewstabbar.jpi rw-r r - 1 jenkins jenkins 370803 Jun 23 23:52 credentials.jpi rw-r r - 1 jenkins jenkins 929368 Jun 23 23:52 cvs.jpi rw-r r - 1 jenkins jenkins 599851 Jun 24 16:41 dashboard-view.jpi rw-r r - 1 jenkins jenkins 8126 Jun 24 16:45 delete-log-plugin.jpi rw-r r - 1 jenkins jenkins 18344 Jun 24 16:43 description-column-plugin.jpi rw-r r - 1 jenkins jenkins 11095865 Jun 24 16:43 email-ext.jpi rw-r r - 1 jenkins jenkins 47379 Jun 24 16:43 extended-choice-parameter.jpi rw-r r - 1 jenkins jenkins 95225 Jun 24 16:43 extensible-choice-parameter.jpi rw-r r - 1 jenkins jenkins 53839 Jun 23 23:47 external-monitor-job.jpi rw-r r - 1 jenkins jenkins 149536 Jun 24 16:43 extra-columns.jpi rw-r r - 1 jenkins jenkins 22576 Jun 24 16:40 fail-the-build-plugin.jpi rw-r r - 1 jenkins jenkins 26501 Jun 24 16:43 favorite.jpi rw-r r - 1 jenkins jenkins 11565 Jun 24 16:45 favorite-view.jpi rw-r r - 1 jenkins jenkins 3082917 Jun 24 16:45 git-client.jpi rw-r r - 1 jenkins jenkins 4629487 Jun 24 16:44 git.jpi rw-r r - 1 jenkins jenkins 111369 Jun 24 16:41 greenballs.jpi rw-r r - 1 jenkins jenkins 44721 Jun 24 16:43 groovy.jpi rw-r r - 1 jenkins jenkins 37906 Jun 24 16:43 groovy-postbuild.jpi rw-r r - 1 jenkins jenkins 38073 Jun 23 23:47 javadoc.jpi rw-r r - 1 jenkins jenkins 149746 Jun 24 16:44 jobConfigHistory.jpi rw-r r - 1 jenkins jenkins 1672427 Jun 24 16:40 jquery.jpi rw-r r - 1 jenkins jenkins 66770 Jun 23 23:52 ldap.jpi rw-r r - 1 jenkins jenkins 126050 Jun 23 23:47 mailer.jpi rw-r r - 1 jenkins jenkins 392494 Jun 23 23:52 mapdb-api.jpi rw-r r - 1 jenkins jenkins 80756 Jun 23 23:52 matrix-auth.jpi rw-r r - 1 jenkins jenkins 22704 Jun 24 09:49 matrix-combinations-parameter.jpi rw-r r - 1 jenkins jenkins 236414 Jun 23 23:47 matrix-project.jpi rw-r r - 1 jenkins jenkins 34153 Jun 24 16:43 matrix-reloaded.jpi rw-r r - 1 jenkins jenkins 10770184 Jun 23 23:47 maven-plugin.jpi rw-r r - 1 jenkins jenkins 1281955 Jun 24 09:57 metrics.jpi rw-r r - 1 jenkins jenkins 2897068 Jun 24 16:40 monitoring.jpi rw-r r - 1 jenkins jenkins 321451 Jun 24 16:40 nodelabelparameter.jpi rw-r r - 1 jenkins jenkins 10829 Jun 24 16:43 nodenamecolumn.jpi rw-r r - 1 jenkins jenkins 187673 Jun 24 16:45 nodeofflinenotification.jpi rw-r r - 1 jenkins jenkins 9419 Jun 24 16:43 offlineonfailure-plugin.jpi rw-r r - 1 jenkins jenkins 127172 Jun 24 16:45 ownership.jpi rw-r r - 1 jenkins jenkins 1030550 Jun 23 23:47 pam-auth.jpi rw-r r - 1 jenkins jenkins 21282 Jun 24 16:41 postbuild-task.jpi rw-r r - 1 jenkins jenkins 6581 Jun 24 16:43 powershell.jpi rw-r r - 1 jenkins jenkins 15020 Jun 24 16:41 progress-bar-column-plugin.jpi rw-r r - 1 jenkins jenkins 18022 Jun 24 16:43 project-stats-plugin.jpi rw-r r - 1 jenkins jenkins 7807 Jun 24 16:44 python.jpi rw-r r - 1 jenkins jenkins 48910 Jun 24 16:44 rebuild.jpi rw-r r - 1 jenkins jenkins 9817 Jun 24 16:40 regexemail.jpi rw-r r - 1 jenkins jenkins 19016644 Jun 24 16:45 ruby-runtime.jpi rw-r r - 1 jenkins jenkins 145650 Jun 24 16:44 run-condition.jpi rw-r r - 1 jenkins jenkins 75264 Jun 23 23:52 scm-api.jpi rw-r r - 1 jenkins jenkins 79972 Jun 23 23:52 ssh-credentials.jpi rw-r r - 1 jenkins jenkins 202469 Jun 24 16:43 ssh.jpi rw-r r - 1 jenkins jenkins 66901 Jun 23 23:52 ssh-slaves.jpi rw-r r - 1 jenkins jenkins 4758697 Jun 23 23:52 subversion.jpi rw-r r - 1 jenkins jenkins 539374 Jun 24 09:57 support-core.jpi rw-r r - 1 jenkins jenkins 24523 Jun 24 16:41 token-macro.jpi rw-r r - 1 jenkins jenkins 54234 Jun 23 23:52 translation.jpi rw-r r - 1 jenkins jenkins 313873 Jun 24 16:40 view-job-filters.jpi rw-r r - 1 jenkins jenkins 949638 Jun 23 23:47 windows-slaves.jpi

            Unassigned Unassigned
            caroeber C. Alex Reober
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: