Re: Nullpointer exception in Jenkins 2.46.3

2018-01-18 Thread Daniel Beck
> On 18. Jan 2018, at 10:14, 'Madhawa Gunasekara' via Jenkins Users > wrote: > > ERROR: Processing failed due to a bug in the code. Please report this to > jenkinsci-users@googlegroups.com This error mostly means you're on Maven Plugin 2.16 or older, superseded by 2.17 since July 2017. Pleas

Nullpointer exception in Jenkins 2.46.3

2018-01-18 Thread 'Madhawa Gunasekara' via Jenkins Users
Hi Devs, I found this NPE when we try to build one of our repo using Jenkins. Any idea to avoid this issue. I found a similar issue with Jenkins older version [1]. but that issue is all ready fixed. [1] https://issues.jenkins-ci.org/browse/JENKINS-20929 [INFO] --- maven-remote-resources-plugin

AW: RunListener nullpointer exception

2017-06-06 Thread Lukas Resch
Hi, The update to Jenkins 2.64 and installing the latest pipeline plugins today fixed the issue for me. Regards -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email

AW: RunListener nullpointer exception

2017-05-30 Thread Lukas Resch
enstag, 30. Mai 2017 11:33 An: jenkinsci-users@googlegroups.com Betreff: Re: RunListener nullpointer exception >From a 5 seconds search, I found JENKINS-43055 which looks similar wrt the >message, though didn't check if this is really the same. My 2 cents 2017-05-30 9:48 GMT+02:00 Luk

Re: RunListener nullpointer exception

2017-05-30 Thread Baptiste Mathus
>From a 5 seconds search, I found JENKINS-43055 which looks similar wrt the message, though didn't check if this is really the same. My 2 cents 2017-05-30 9:48 GMT+02:00 Lukas Resch : > Hi, > > I am running Jenkins 2.63 on an Ubuntu 14.04 machine and after each > successful pipeline build I get

RunListener nullpointer exception

2017-05-30 Thread Lukas Resch
Hi, I am running Jenkins 2.63 on an Ubuntu 14.04 machine and after each successful pipeline build I get a null pointer in the RunListener: May 30, 2017 9:10:49 AM WARNING hudson.model.listeners.RunListener report RunListener failed java.lang.NullPointerException at java.util.StringTokeni

Re: Maven Info Plugin NullPointer Exception

2015-09-14 Thread Verjigorm
J enkins 1.620 Jenkins Master OS: SUSE LES 11.3 Jenkins Slave OS: Windows 7 Java: jdk1.7.0_15 List of current Plugins: About 60 The error alwys occures while some Selenium-Tests(with Chrome!) are running on the windows-slave. Am Freitag, 4. September 2015 00:18:56 UT

Re: Maven Info Plugin NullPointer Exception

2015-09-03 Thread Victor Martinez
Can you also provide further details about your Environment (Jenkins Version, OS, java version, Plugin version, list of current plugins) When do you see that error? Thanks On Friday, 21 August 2015 08:03:49 UTC+2, Verjigorm wrote: > > Build on Windows-Slave fails with: > > > ERROR: Processing f

Re: NullPointer

2015-08-31 Thread Gilad Baruchian
here is the jelly : -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view this

NullPointer

2015-08-31 Thread Gilad Baruchian
I created this class package notifier; import hudson.Extension; import hudson.Launcher; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import hudson.model.BuildListener; import hudson.tasks.*; import net.sf.json.JSONObject; import org.kohsuke.stapler.DataBoundConstructor

Maven Info Plugin NullPointer Exception

2015-08-20 Thread Verjigorm
Build on Windows-Slave fails with: ERROR: Processing failed due to a bug in the code. Please report this to jenkinsci-us...@googlegroups.comjava.lang.NullPointerException at jenkins.plugins.maveninfo.extractor.p

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-08 Thread ycollet
I fill a bug report: https://issues.jenkins-ci.org/browse/JENKINS-26350 Le lundi 5 janvier 2015 16:58:23 UTC+1, ycollet a écrit : > > Hello, > > I upgraded to last version of jenkins (1.592) and updated to last version > of plugins. > I've got a project which checkout a tag from a git repo and co

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-08 Thread ycollet
It looks like this is a git plugin bug ... A regression in the behavior of the git plugin. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsub

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-05 Thread ycollet
Hello, I got into the workspace of the project. Here is the log of various git commands: $ git remote origin $ git tag -l 2013.3 ... Supergrid_1.1.RC2 ... Supergrid_2014.1.3.RC2 $ git branch -a * (détaché de df0ef2b) remotes/origin/CITY1.2.6 ... remotes/origin/master remotes/origin/timez

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-05 Thread Mark Waite
Is there a remote named "origin" in that repository? Has the remote branch "Supergrid_2014.1.3.RC2 been deleted? If so, then you may want to enable "Prune remote branches" so that local branches are removed when their remote branch is deleted. Mark Waite On Mon, Jan 5, 2015 at 9:11 AM, ycollet

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-05 Thread ycollet
This command works with: git rev-parse Supergrid_2014.1.3.RC2^{commit} Instead of git rev-parse origin/Supergrid_2014.1.3.RC2^{commit} I remove the origin/ -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-05 Thread ycollet
I just entered some of the git command produced by jenkins (from the console log) and one of the command produced an error: Here is the log message I've got: git rev-parse origin/Supergrid_2014.1.3.RC2^{commit} origin/Supergrid_2014.1.3.RC2^{commit} fatal: ambiguous argument 'origin/Supergrid_20

Re: Jenkins nullpointer exception - git checkout branch / tag

2015-01-05 Thread Slide
Looks like its something in the Rebuild plugin. Can you try uninstalling/disabling that plugin? On Mon Jan 05 2015 at 8:58:26 AM ycollet wrote: > Hello, > > I upgraded to last version of jenkins (1.592) and updated to last version > of plugins. > I've got a project which checkout a tag from a gi

Jenkins nullpointer exception - git checkout branch / tag

2015-01-05 Thread ycollet
Hello, I upgraded to last version of jenkins (1.592) and updated to last version of plugins. I've got a project which checkout a tag from a git repo and compiled java code using ant. The project use a string parameter and this string parameters is sent to the git plugin to checkout a branch or

NullPointer after upgrade to 1.577

2014-08-27 Thread Christopher Helck
After upgrading from a pretty old version (at least 30 revisions) a large number of jobs don't show up in the browser although the job directories still exist on the server. The log file has tons of errors similar to: Aug 27, 2014 3:43:23 PM jenkins.InitReactorRunner$1 onTaskFailed SEVERE:

Re: NullPointer from hudson.maven.Maven3Builder$MavenExecutionListener with maven-native-plugin/packaging dll

2014-04-16 Thread James Hutton
Looks like this is related to jenkins-12259. On Friday, March 14, 2014 8:16:39 AM UTC-4, James Hutton wrote: > > I have a multimodule plugin that has a native module in it that produces a > dll (don't ask, legacy reasons). However it appears that jenkins is not > producing a MavenBuildProxy2 in

NullPointer from hudson.maven.Maven3Builder$MavenExecutionListener with maven-native-plugin/packaging dll

2014-03-14 Thread James Hutton
I have a multimodule plugin that has a native module in it that produces a dll (don't ask, legacy reasons). However it appears that jenkins is not producing a MavenBuildProxy2 instance that matches the module's name, hence on projectStarted, etc the execution listener throws a nullpointerexcept

Re: Nullpointer in log rotator

2012-10-11 Thread Pawel
olling out a > Jenkins upgrade I would recommend that you switch from the bleeding edge to > LTS. > > > > /James > > > > *From:* jenkins...@googlegroups.com [mailto: > jenkins...@googlegroups.com ] *On Behalf Of *Pawel > *Sent:* 10 October 2012 13:03 > *To:

RE: Nullpointer in log rotator

2012-10-11 Thread Nord, James
Behalf Of Pawel Sent: 10 October 2012 13:03 To: jenkinsci-users@googlegroups.com Subject: Re: Nullpointer in log rotator Same issue for me. I have first updated to 484, which introduced nasty bug with Maven installations being removed, so I installed 485, which makes plenty of my builds fail because

Re: Nullpointer in log rotator

2012-10-10 Thread Phumzile Saleni
has anyone found a solution for this? On Tuesday, 9 October 2012 20:45:29 UTC+2, Larry Shatzer, Jr. wrote: > > I saw a few of these during startup, and now when a job ran, I saw this: > (Using latest jenkins 1.485) > > 12:40:04 Waiting for Jenkins to finish collecting data > 12:40:04 ERROR: Proce

Re: Nullpointer in log rotator

2012-10-10 Thread Phumzile Saleni
has anyone found a solution for this? On Tuesday, 9 October 2012 20:45:29 UTC+2, Larry Shatzer, Jr. wrote: > > I saw a few of these during startup, and now when a job ran, I saw this: > (Using latest jenkins 1.485) > > 12:40:04 Waiting for Jenkins to finish collecting data > 12:40:04 ERROR: Proce

Re: Nullpointer in log rotator

2012-10-10 Thread Pawel
Same issue for me. I have first updated to 484, which introduced nasty bug with Maven installations being removed, so I installed 485, which makes plenty of my builds fail because of NPE. Is anyone testing the releases in some real environment before giving them to users?

Re: Nullpointer in log rotator

2012-10-10 Thread Christoph Kutzinski
Betreff: Re: Nullpointer in log rotator > I have this exception too (1.485), I've restarted the master and its > working fine now > > Le mardi 9 octobre 2012 20:45:29 UTC+2, Larry Shatzer, Jr. a écrit : > > > > I saw a few of these during startup, and now when

Re: Nullpointer in log rotator

2012-10-10 Thread Youri
I have this exception too (1.485), I've restarted the master and its working fine now Le mardi 9 octobre 2012 20:45:29 UTC+2, Larry Shatzer, Jr. a écrit : > > I saw a few of these during startup, and now when a job ran, I saw this: > (Using latest jenkins 1.485) > > 12:40:04 Waiting for Jenkins

Re: Nullpointer in log rotator

2012-10-09 Thread Loren Keagle
Just upgraded to 1.485, and I'm seeing the same issue, but a slightly different stack trace: Oct 09, 2012 5:59:39 PM hudson.model.Executor run SEVERE: Executor threw an exception java.lang.NullPointerException at hudson.tasks.LogRotator.perform(LogRotator.java:119) at hudson.model

Re: Nullpointer in log rotator

2012-10-09 Thread Larry Shatzer, Jr.
I forgot to mention, this was during a m2-release build. On Tue, Oct 9, 2012 at 12:45 PM, Larry Shatzer, Jr. wrote: > I saw a few of these during startup, and now when a job ran, I saw this: > (Using latest jenkins 1.485) > > 12:40:04 Waiting for Jenkins to finish collecting data > 12:40:04 ERROR

Nullpointer in log rotator

2012-10-09 Thread Larry Shatzer, Jr.
I saw a few of these during startup, and now when a job ran, I saw this: (Using latest jenkins 1.485) 12:40:04 Waiting for Jenkins to finish collecting data 12:40:04 ERROR: Processing failed due to a bug in the code. Please report this to jenkinsci-users@googlegroups.com 12:40:04 java.lang.NullPoi

problem during startup on GlassFish 3.1.1b12 - Nullpointer Exception

2012-04-13 Thread Maciej Matecki
Hi, I've got a problem with startup of Jenkins. After deploy I've got such exception: org.jvnet.hudson.reactor.ReactorException: java.lang.NullPointerException at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246) at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)

Jenkins - Nullpointer exception

2012-02-16 Thread breako
Hi, I get an interesting stack trace from my build (which uses maven) here. The maven error is one thing, but what's interesting is further down where it says: ERROR: Processing failed due to a bug in the code. Please report this to jenkinsci-users@googlegroups.com java.lang.NullPointerException