使用maven打包时如何排除conf文件
我有一个项目将被其他项目使用,当我打包它时,它总是包含配置文件(beans.xml)。我只想排除这些配置文件。我该怎么做?谢谢
I have a project which will been used by other projects and when I package it, it always include the configuration files (beans.xml). I just want to exclude these configuration files. How can I do this ? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 beans.xml 只是测试的一部分;你可以把它放在
src/test/resources
中。它不会被添加到生成的库中。If your beans.xml is only part of your tests; you can put it in
src/test/resources
. It will not be added to the generated library.