jira.codehaus.org

  • Log In Access more options
    • Online Help
    • Keyboard Shortcuts
    • About JIRA
    • JIRA Credits
    • What?s New
  • Dashboards Access more options (Alt+d)
  • Projects Access more options (Alt+p)
  • Issues Access more options (Alt+i)
  • Maven 2 & 3
  • MNG-3616

Null Pointer Exception when mirrorOf missing from mirror in settings.xml

  • Log In
  • Views
    • XML
    • Word
    • Printable

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Major Major
  • Resolution: Fixed
  • Affects Version/s: 2.0.9
  • Fix Version/s: 3.0-beta-1
  • Component/s: None
  • Labels:
    None
  • Complexity:
    Intermediate

Description

When attempting to generate any archetype from the mvn archetype:generate command I get a null pointer exception thrown if I have mirrors defined in my settings.xml file but fail to have the mirrorOf element set.

The stack trace for the archetype generation is:

Choose a number: (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/2
4/25/26/27/28/29/30/31/32/33/34/35/36/37/38/39/40/41/42/43/44) 15: : 6
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] : java.lang.NullPointerException
null
[INFO] ------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.BuildFailureException
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Defa
ultLifecycleExecutor.java:579)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandalone
Goal(DefaultLifecycleExecutor.java:512)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(Defau
ltLifecycleExecutor.java:482)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHan
dleFailures(DefaultLifecycleExecutor.java:330)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmen
ts(DefaultLifecycleExecutor.java:227)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLi
fecycleExecutor.java:142)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:336)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:287)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)

at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.plugin.MojoFailureException
at org.apache.maven.archetype.mojos.CreateProjectFromArchetypeMojo.execu
te(CreateProjectFromArchetypeMojo.java:202)
at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPlugi
nManager.java:451)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Defa
ultLifecycleExecutor.java:558)
... 16 more
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7 seconds
[INFO] Finished at: Wed May 28 17:49:39 EST 2008
[INFO] Final Memory: 8M/14M
[INFO] ------------------------------------------------------------------------

C:\Documents and Settings\frank\My Documents\Development\Sandbox>mvn -v
Maven version: 2.0.9
Java version: 1.5.0_08
OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows"

The mirrored settings from the settings.xml file are:

<mirrors>
<mirror>
<id>nexus-central</id>
<url>http://maven.ho.bushlife.com.au:8081/nexus/content/groups/public</url>
</mirror>
</mirrors>

As a user you receive a null pointer exception because of something missing in the settings.xml file.

At the very least you should receive an error message indicating the problem. If you can have a situation where the mirrorOf setting is optional, then it should not be throwing a null pointer exception but handling it better.

Issue Links

is duplicated by

Bug - A problem which impairs or prevents the functions of the product. MNG-3734 npe when settings missing <mirrorOf> tag

  • Major - Major loss of function.
  • Closed - The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.
is related to

Bug - A problem which impairs or prevents the functions of the product. MNG-3645 Maven doesn't do strict model validation for POMs in the current reactor

  • Major - Major loss of function.
  • Closed - The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.

Activity

Ascending order - Click to sort in descending order
  • All
  • Comments
  • Work Log
  • History
  • Activity
Hide
Permalink
Paul Benedict added a comment - 08/Mar/09 10:15 PM

I am pretty sure this was fixed in 2.0.10

Show
Paul Benedict added a comment - 08/Mar/09 10:15 PM I am pretty sure this was fixed in 2.0.10
Hide
Permalink
Brett Porter added a comment - 08/Mar/09 11:30 PM

just tested, no, it is not fixed in 2.0.10

Show
Brett Porter added a comment - 08/Mar/09 11:30 PM just tested, no, it is not fixed in 2.0.10
Hide
Permalink
Paul Benedict added a comment - 09/Mar/09 11:29 AM

Didn't the upgrade to alpha-18 + of modello put in strict validation?

Show
Paul Benedict added a comment - 09/Mar/09 11:29 AM Didn't the upgrade to alpha-18 + of modello put in strict validation?
Hide
Permalink
Brett Porter added a comment - 09/Mar/09 6:39 PM

yes, I'm not sure why it's not working, just that it is not.

Show
Brett Porter added a comment - 09/Mar/09 6:39 PM yes, I'm not sure why it's not working, just that it is not.
Hide
Permalink
Paul Benedict added a comment - 09/Mar/09 11:07 PM

I removed all my <mirrorOf> tags in settings.xml and did not receive this error on 2.0.10.

Show
Paul Benedict added a comment - 09/Mar/09 11:07 PM I removed all my <mirrorOf> tags in settings.xml and did not receive this error on 2.0.10.
Hide
Permalink
Brett Porter added a comment - 09/Mar/09 11:16 PM

did you ensure it had to download an artifact?

Show
Brett Porter added a comment - 09/Mar/09 11:16 PM did you ensure it had to download an artifact?
Hide
Permalink
Benjamin Bentmann added a comment - 30/Mar/10 6:21 AM

Fixed in r929083 by strengthening settings validation to capture this up front.

Show
Benjamin Bentmann added a comment - 30/Mar/10 6:21 AM Fixed in r929083 by strengthening settings validation to capture this up front.

People

  • Assignee:
    Benjamin Bentmann
    Reporter:
    Frank Adcock
Vote (0)
Watch (0)

Dates

  • Created:
    04/Jun/08 2:51 PM
    Updated:
    30/Mar/10 2:46 PM
    Resolved:
    30/Mar/10 6:21 AM
  • Atlassian JIRA (v5.0.4#731-sha1:3aa7374)
  • Report a problem
  • Powered by a free Atlassian JIRA open source license for Codehaus. Try JIRA - bug tracking software for your team.