You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Benno Markiewicz (JIRA)" <ji...@codehaus.org> on 2008/11/18 13:52:41 UTC

[jira] Commented: (MPIR-135) NPE if license URL is not defined

    [ http://jira.codehaus.org/browse/MPIR-135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=154572#action_154572 ] 

Benno Markiewicz commented on MPIR-135:
---------------------------------------

The reason is the comparison using a null string.

Line 156: 
Actual:
    if ( urlValidator.isValid( url ) || url.startsWith( "file://" ) )
Fix        
   if ( urlValidator.isValid( url ) || StringUtils.defaultString(url).startsWith( "file://" )  )


> NPE if license URL is not defined
> ---------------------------------
>
>                 Key: MPIR-135
>                 URL: http://jira.codehaus.org/browse/MPIR-135
>             Project: Maven 2.x Project Info Reports Plugin
>          Issue Type: Bug
>          Components: license
>    Affects Versions: 2.1
>         Environment: maven 2.0.9
> java 1.5
>            Reporter: Andreas Höhmann
>
> [INFO] [site:site]
> [INFO] ------------------------------------------------------------------------
> [ERROR] FATAL ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] null
> [INFO] ------------------------------------------------------------------------
> [INFO] Trace
> java.lang.NullPointerException
>         at org.apache.maven.report.projectinfo.LicenseReport.getLicenseURL(LicenseReport.java:156)
>         at org.apache.maven.report.projectinfo.LicenseReport.canGenerateReport(LicenseReport.java:114)
>         at org.apache.maven.plugins.site.AbstractSiteRenderingMojo.filterReports(AbstractSiteRenderingMojo.java:177)
>         at org.apache.maven.plugins.site.SiteMojo.execute(SiteMojo.java:81)
>         at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:451)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:558)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:49
> 9)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:478)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.jav
> a:330)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:291)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.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(DelegatingMethodAccessorImpl.java:25)
>         at java.lang.reflect.Method.invoke(Method.java:585)
> $
>         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)
> [INFO] ------------------------------------------------------------------------

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira