我有一个最初使用ANT编写的模块。我目前正在将其转换为maven。我已经解决了所有的依赖关系,并且它正在打包。
事情是这样的。该模块提供了3个不同的文件夹(问题,答案,备注),它们都包含3个同名的.properties文件。我想打包模块,它应该只包含指定的fodler的文件。我该怎么做呢?
您应该使用ant文件集
<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