标签: java ant war
构建我的WAR文件时,我想要排除所有包含“test”字样的文件。有没有办法在一个排除标记中排除所有这些文件?
答案 0 :(得分:2)
是的,在<fileset>中使用类似的内容:
<fileset>
<exclude name="**/*test*"/>
实际上,这是<FileSet>的{{3}}。
<FileSet>
答案 1 :(得分:0)
是
<war ... excludes="**/**test**" />
或使用文件集