Author: jvanzyl
Date: Wed Sep 28 18:25:06 2005
New Revision: 292367
URL: http://svn.apache.org/viewcvs?rev=292367&view=rev
Log:
o if maven.home system property is not set just ignore it.
Modified:
maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java
Modified:
maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java?rev=292367&r1=292366&r2=292367&view=diff
==============================================================================
---
maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java
(original)
+++
maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java
Wed Sep 28 18:25:06 2005
@@ -55,11 +55,15 @@
public void initialize()
{
userRegistryFile = getFile( userRegistryPath, "user.home",
MavenPluginRegistryBuilder.ALT_USER_PLUGIN_REG_LOCATION );
-
- globalRegistryFile = getFile( globalRegistryPath, "maven.home",
MavenPluginRegistryBuilder.ALT_GLOBAL_PLUGIN_REG_LOCATION );
- getLogger().debug( "Building Maven global-level plugin registry from:
'" + globalRegistryFile.getAbsolutePath() + "'" );
getLogger().debug( "Building Maven user-level plugin registry from: '"
+ userRegistryFile.getAbsolutePath() + "'" );
+
+ if ( System.getProperty( "maven.home" ) != null )
+ {
+ globalRegistryFile = getFile( globalRegistryPath, "maven.home",
MavenPluginRegistryBuilder.ALT_GLOBAL_PLUGIN_REG_LOCATION );
+
+ getLogger().debug( "Building Maven global-level plugin registry
from: '" + globalRegistryFile.getAbsolutePath() + "'" );
+ }
}
public PluginRegistry buildPluginRegistry()
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]