views:

335

answers:

1

Im using maven to checkout some projects. I don't want maven to checkout a folder. But it seems to ignore the excludes tag in configuration.

This is the svn structure:

trunk/  
|-- folder_to_include  
`-- folder_to_ignore  

And here it goes a sample of the pom.xml:

<execution>  
  <id>checkout_application</id>  
  <configuration>  
    <connectionUrl>hostname</connectionUrl>  
    <checkoutDirectory>checkout_folder</checkoutDirectory>  
    <excludes>folder_to_ignore</excludes>  
  </configuration>  
  <phase>process-resources</phase>  
  <goals>  
     <goal>checkout</goal>  
  </goals>  
</execution> 

What am I doing wrong?

+1  A: 

I notice the same behaviour. I suggest filing this issue in http://jira.codehaus.org/browse/SCM.

Brett Porter