用于在 jar 中包含文件的 Maven 脚本
如何在 jar 文件中包含 config 文件夹。 假设我有一个服务项目 services/src/config/adp/flt/get.flt config文件夹中有一个flt文件。 所以我想使用 maven 脚本将该文件夹包含在 services.jar 中 我尝试了不同的解决方案复制资源,但它正在将该文件夹复制到目标文件夹而不是 services.jar 中
How do i include config folder in jar file.
let say i have one services project
services/src/config/adp/flt/get.flt
there is one flt file in config folder.
So i want to include that folder in services.jar using maven script
I have tried different solution copy-resources but it is copying that folder on target folder not in services.jar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 Maven 资源插件:
或者,您可以将文件移动到Maven 默认资源文件夹
src/main/resources
的子目录。这样,它们就会自动包含在内。Try the Maven Resource Plugin:
Alternatively, you could move your files to a sub directory of Maven's default resource folder,
src/main/resources
. In that way, they get included automatically.