Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 Maven 模块中的特定目录添加到我的构建中。我相信这fileSets是回到过去的方法。
fileSets
我希望有一种清晰简洁的方式来fileSets从 Maven 模块中获取必要的目录,这些模块只包含一个包含一些必要资源的目录。
如果要包含整个模块,请使用 moduleSets,但如果要选择要添加的文件,可以在顶级项目的程序集配置文件中使用 fileSets,如下所示:
<fileSets> <fileSet> <directory>${basedir}/myModule/src/main/resources</directory> <includes> <include>*.txt</include> </includes> </fileSet> </fileSets>