How to exclude a folder in svn checkout in maven?
- by Udo Fholl
Hi all,
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/
|
L_ folder_to_include
|
L_ 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>
Sorry for the poor formatting and my english. I wasn't able to insert proper tabulation (four spaces?).
Thank you!
Udo.