[
https://issues.apache.org/jira/browse/SCM-383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17964554#comment-17964554
]
Olivier Lamy commented on SCM-383:
----------------------------------
This project has moved from Jira to GitHub Issues. This issue was migrated to
[apache/maven-scm#605|https://github.com/apache/maven-scm/issues/605].
> SVN Tag does not use includes/excludes parameters
> -------------------------------------------------
>
> Key: SCM-383
> URL: https://issues.apache.org/jira/browse/SCM-383
> Project: Maven SCM (Moved to GitHub Issues)
> Issue Type: Bug
> Components: maven-scm-provider-svn
> Affects Versions: 1.1
> Reporter: Nils Winkler
> Assignee: Siveton Vincent
> Priority: Major
> Fix For: 1.2
>
>
> 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 was sent by Atlassian Jira
(v8.20.10#820010)