You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Toby (JIRA)" <ji...@codehaus.org> on 2008/07/29 17:06:26 UTC

[jira] Created: (MDEP-175) includeArtifactIds should trim whitespace

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

        

[jira] Reopened: (MDEP-175) includeArtifactIds should trim whitespace

Posted by "Dan Tran (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Tran reopened MDEP-175:
---------------------------


> 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: Dan Tran
>             Fix For: 2.2
>
>
> 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

        

[jira] Closed: (MDEP-175) includeArtifactIds should trim whitespace

Posted by "Dan Tran (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Tran closed MDEP-175.
-------------------------

       Resolution: Fixed
    Fix Version/s: 2.2
         Assignee: Dan Tran  (was: Brian Fox)

fixed at

Revision: 894970
Author: dantran
Date: 8:08:00 PM, Thursday, December 31, 2009
Message:
[MDEP-235] Better handling of comma separated string configurations
----
Modified : /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/AbstractDependencyFilterMojo.java
Modified : /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/UnpackDependenciesMojo.java
Modified : /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/fromConfiguration/ArtifactItem.java
Modified : /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java
Modified : /maven/plugins/trunk/maven-dependency-plugin/src/test/java/org/apache/maven/plugin/dependency/utils/TestDependencyUtil.java



> 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: Dan Tran
>             Fix For: 2.2
>
>
> 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

        

[jira] Closed: (MDEP-175) includeArtifactIds should trim whitespace

Posted by "Dan Tran (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Tran closed MDEP-175.
-------------------------

    Resolution: Duplicate

dup of MDEP-235

> 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: Dan Tran
>             Fix For: 2.2
>
>
> 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