brett       2005/03/18 15:34:44

  Modified:    maven-core/src/main/java/org/apache/maven/plugin
                        DefaultPluginManager.java
  Log:
  repair formatting mishap
  
  Revision  Changes    Path
  1.56      +12 -12    
maven-components/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginManager.java
  
  Index: DefaultPluginManager.java
  ===================================================================
  RCS file: 
/home/cvs/maven-components/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginManager.java,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- DefaultPluginManager.java 18 Mar 2005 23:32:37 -0000      1.55
  +++ DefaultPluginManager.java 18 Mar 2005 23:34:44 -0000      1.56
  @@ -542,7 +542,7 @@
               {
                   org.apache.maven.model.Plugin plugin = 
(org.apache.maven.model.Plugin) iterator.next();
   
  -// TODO: groupID not handled
  +                // TODO: groupID not handled
                   if ( pluginId.equals( plugin.getArtifactId() ) )
                   {
                       return CollectionUtils.mergeMaps( 
plugin.getConfiguration(), map );
  @@ -563,9 +563,9 @@
           return message.toString();
       }
   
  -// ----------------------------------------------------------------------
  -// Lifecycle
  -// ----------------------------------------------------------------------
  +    // ----------------------------------------------------------------------
  +    // Lifecycle
  +    // ----------------------------------------------------------------------
   
       public void contextualize( Context context )
           throws ContextException
  @@ -582,10 +582,10 @@
                                                                 
"plexus-artifact-container", "wagon-provider-api",
                                                                 "classworlds"} 
);
   
  -// TODO: move this to be configurable from the Maven component
  +        // TODO: move this to be configurable from the Maven component
           remotePluginRepositories = new ArrayList();
   
  -// TODO: needs to be configured from the POM element
  +        // TODO: needs to be configured from the POM element
   
           MavenSettings settings = null;
           try
  @@ -607,9 +607,9 @@
           remotePluginRepositories.add( pluginRepository );
       }
   
  -// ----------------------------------------------------------------------
  -// Artifact resolution
  -// ----------------------------------------------------------------------
  +    // ----------------------------------------------------------------------
  +    // Artifact resolution
  +    // ----------------------------------------------------------------------
   
       private void resolveTransitiveDependencies( MavenSession context, 
ArtifactResolver artifactResolver,
                                                   MavenProjectBuilder 
mavenProjectBuilder )
  @@ -627,9 +627,9 @@
           project.addArtifacts( result.getArtifacts().values() );
       }
   
  -// ----------------------------------------------------------------------
  -// Artifact downloading
  -// ----------------------------------------------------------------------
  +    // ----------------------------------------------------------------------
  +    // Artifact downloading
  +    // ----------------------------------------------------------------------
   
       private void downloadDependencies( MavenSession context, 
ArtifactResolver artifactResolver )
           throws GoalExecutionException
  
  
  

Reply via email to