2010-04-12 24 views
2

Im en utilisant maven pour vérifier certains projets. Je ne veux pas que Maven achète un dossier. Mais il semble ignorer l'étiquette exclues en configuration.Comment exclure un dossier dans svn checkout dans maven?

C'est la structure svn:

 
trunk/ 
|-- folder_to_include 
`-- folder_to_ignore 

Et ici, il va un échantillon du 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> 

Qu'est-ce que je fais mal?

Répondre