mirror of https://github.com/apache/maven.git
o Fix MNG-781 (skip null configurations).
That issue is now renamed to the more general problem. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@239964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f437fb5dc2
commit
ca3882cde6
|
@ -675,6 +675,11 @@ public class EclipseWriter
|
||||||
{
|
{
|
||||||
Xpp3Dom pluginConfig = (Xpp3Dom) plugin.getConfiguration();
|
Xpp3Dom pluginConfig = (Xpp3Dom) plugin.getConfiguration();
|
||||||
|
|
||||||
|
if ( pluginConfig == null )
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
String source = null;
|
String source = null;
|
||||||
|
|
||||||
Xpp3Dom sourceChild = pluginConfig.getChild( "source" );
|
Xpp3Dom sourceChild = pluginConfig.getChild( "source" );
|
||||||
|
|
Loading…
Reference in New Issue