SVN Tag does not use includes/excludes parameters
-------------------------------------------------
Key: SCM-383
URL: http://jira.codehaus.org/browse/SCM-383
Project: Maven SCM
Issue Type: Bug
Components: maven-scm-provider-svn
Affects Versions: 1.1
Reporter: Nils Winkler
The SVN tag command does not use the includes/excludes parameters, instead of
this, fixed patterns ("**", "**/.svn/**") are applied:
https://svn.apache.org/repos/asf/maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/tag/SvnTagCommand.java
{code}
try
{
files = FileUtils.getFiles( fileSet.getBasedir(), "**",
"**/.svn/**", false );
}
catch ( IOException e )
{
throw new ScmException( "Error while executing command.", e );
}
{code}
Desired behavior: The provided includes/excludes patterns should be used
(probably in addition to the default excludes pattern).
--
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