gpt4 book ai didi

java - 从全局位置读取版本

转载 作者:行者123 更新时间:2023-12-01 12:40:39 26 4
gpt4 key购买 nike

我在项目中有 4 个 pom 文件,我想将所有 pom 版本保留在 ope 属性文件中,并希望从该文件中读取。我不知道如何实现这一目标。我尝试过这些...我在资源下创建了 pom.properties 文件并尝试读取这样的属性。不幸的是我的代码无法工作。请帮助我......

<resources>
<resource>
<directory>src/main/resources/pom.properties</directory>
</resource>
</resources>

enter code here

提前致谢甘塔

最佳答案

使用“父”pom:

<parent>
<groupId>com.mycompany</groupId>
<artifactId>myproject-parent</artifactId>
<version>1.0.1</version>
</parent>

在父 pom 中,您可以定义如下属性:

<properties>
<camel.version>2.12.0.redhat-610379</camel.version>
<cxf.version>2.7.0.redhat-610379</cxf.version>
<activemq.version>5.9.0.redhat-610379</activemq.version>
</properties>

最后,您可以通过如下语法引用属性:${camel.version}

关于java - 从全局位置读取版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25133647/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com