Apache Maven Resources Plugin排除了一个目录

我正在尝试在构建过程中将一些资源从一个点复制到另一个点.因此我使用Apache Maven Resources Plugin.其实我排除了一些文件,我不需要.但我也想排除一个目录.我尝试了几种方法但它没有用.

<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
    <execution>
        <id>copy-client-product</id>
        <phase>verify</phase>
        <goals>
            <goal>copy-resources</goal>
        </goals>
        <configuration>
            <outputDirectory>${basedir}/target/pro/client</outputDirectory>
            <resources>
                <resource>
                    <directory>target\products\client\win32\win32\x86\</directory>
                    <excludes>
                        <exclude>p2</exclude>
                        <exclude>eclipsec.exe</exclude>
                    </excludes>
                </resource>
            </resources>
        </configuration>
    </execution>
</executions>

在这个例子中,我试图排除文件夹“p2”.

<exclude>*/p2/**</exclude>
<exclude>p2/**</exclude>
<exclude>**/p2</exclude>

也不行.

最佳答案 <排除> ** / P2 / ** LT; /排除>

@khmarbaise是正确的答案.

点赞