-
Bug
-
Resolution: Fixed
-
Major
-
None
-
Platform: All, OS: Linux
Got this looking at the console output in Hudson 109.
started
Updating svn+ssh://...
At revision 7582
no change for svn+ssh://... since the previous build
Parsing POMs
Triggering org.gria:base
FATAL: null
java.lang.NullPointerException
at hudson.maven.MavenModuleSetBuild.getResult(MavenModuleSetBuild.java:68)
at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:131)
at hudson.model.Run.run(Run.java:559)
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:132)
at hudson.model.Executor.run(Executor.java:59)
The code is (from MavenModuleSetBuild.java):
public Result getResult() {
Result r = super.getResult();
for (List<MavenBuild> list : getModuleBuilds().values())
{ Result br = build.getResult(); if(br!=null) r = r.combine(br); }for (MavenBuild build : list)
return r;
}
But it seems that super.getResult() can (and does) return null (from Run.java):
/**
*
, this method
*/
@Exported
public Result getResult() { return result; }