ANT创建一个WAR文件并排除一个单词

时间:2011-05-11 14:33:50

标签: java ant war

构建我的WAR文件时,我想要排除所有包含“test”字样的文件。有没有办法在一个排除标记中排除所有这些文件?

2 个答案:

答案 0 :(得分:2)

是的,在<fileset>中使用类似的内容:

<exclude name="**/*test*"/>

实际上,这是<FileSet>的{​​{3}}。

答案 1 :(得分:0)

<war ... excludes="**/**test**" />

或使用文件集