我有一个使用ANT正式写入的模块。我目前正在将其转换为maven。我已经解决了所有的依赖关系,并且包装正常。
这是事情。该模块提供3个不同的文件夹(问题,答案,备注),所有这些文件夹包含3个名称相同的.properties文件。我想打包模块,它应该只包括指定的fodler的文件。
我该怎么做?
答案 0 :(得分:0)
您应该使用ant fileset
<war destfile="myapp.war" webxml="src/metadata/myapp.xml">
<fileset dir="questions" includes="my.properties" />
<fileset dir="answers" includes="my.properties" />
<fileset dir="remarks" includes="my.properties" />
</war