includeArtifactIds should trim whitespace
-----------------------------------------

                 Key: MDEP-175
                 URL: http://jira.codehaus.org/browse/MDEP-175
             Project: Maven 2.x Dependency Plugin
          Issue Type: Bug
    Affects Versions: 2.0
         Environment: maven 2.09, on mac osx 
            Reporter: Toby
            Assignee: Brian Fox




includeArtifactIds should trim all white space

in the following example:

This works:
<includeArtifactIds>
              
nexus-app,nexus-configuration,nexus-proxy,nexus-rest-api,nexus-rest-model,nexus-webapp,nexus-indexer
</includeArtifactIds>


this does not:

<includeArtifactIds>
        nexus-app, nexus-configuration, nexus-proxy, nexus-rest-api, 
nexus-rest-model, nexus-webapp, nexus-indexer
</includeArtifactIds>

And of course this does not:

<includeArtifactIds>
     nexus-app,
     nexus-configuration, 
     nexus-proxy, 
     nexus-rest-api, 
     nexus-rest-model, 
     nexus-webapp, 
     nexus-indexer
</includeArtifactIds>

<execution>
                        <id>fix-me-please</id>
                        <phase>pre-site</phase>
                        <goals>
                                <goal>unpack-dependencies</goal>
                        </goals>
                        <configuration>
 
                                <includeArtifactIds>
                                
nexus-app,nexus-configuration,nexus-proxy,nexus-rest-api,nexus-rest-model,nexus-webapp,nexus-indexer
                            </includeArtifactIds>
 
                                                        
<includeClassifiers>sources</includeClassifiers>
                                                        
<stripVersion>true</stripVersion>
                            
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
 
                                <outputDirectory>
                                        target/emma/sources/
                                </outputDirectory>
 
                        </configuration>
 
                    </execution>

-- 
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

        

Reply via email to