如何在 Maven 脚本中使用属性文件中的属性?
我想在插件配置部分使用 Maven 脚本的属性文件中定义的属性。我怎样才能做到这一点?
从我的 Maven 脚本中摘录:
...
<configuration>
<url>${jdbc.url}</url>
</configuration>
...
我的属性文件 (jdbc.properties) 位于我的类路径中的某个位置,
jcbc.url=some.url.to.use
谢谢。
I want to use properties that are defined in a property file in a Maven script, in a plugin configuration section. How can I do that?
Extract from my Maven script:
...
<configuration>
<url>${jdbc.url}</url>
</configuration>
...
And my property file (jdbc.properties) is somewhere in my classpath
jcbc.url=some.url.to.use
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用属性插件。它被称为 POM,而不是脚本。这看起来似乎是一个微不足道的区别,但 POM 描述了一个项目以及如何构建它,其中脚本是一系列命令,说明需要做什么。
Use the properties plugin. And it's called a POM, not a script. It may seem like a trivial difference, but a POM describes a project and how it should be built, where a script is a sequence of commands saying what needs to be done.