如何使用_profiles_在Maven3中实现变量依赖版本?
我们需要使用不同版本的 deps 构建项目(在本例中为 Postgres 8 和 Postgres 9)。此外,我们的开发人员的计算机上有不同版本的数据库。
我尝试做这样的事情:
<profile>
<id>postgres9</id>
<properties>
<postgres.driver.version>
9.0-801
</postgres.driver.version>
</properties>
</profile>
<profile>
<id>postgres8</id>
<properties>
<postgres.driver.version>
8.3-603
</postgres.driver.version>
</properties>
</profile>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgres.driver.version}</version>
</dependency>
<properties>
<postgres.driver.version>8.3-603</postgres.driver.version>
</properties>
mvn clean test -Ppostgres9
但没有成功。 Profile 变量根本不覆盖 pom 变量。另外,即使使用 ~/.m2/settings.xml 我也无法实现这一点。
有谁知道该怎么做?谢谢。
We need to build project with different versions of deps (in this example, Postgres 8 and Postgres 9). Also, our developers have different versions of DBs on their computers.
I'm tried to do something like this:
<profile>
<id>postgres9</id>
<properties>
<postgres.driver.version>
9.0-801
</postgres.driver.version>
</properties>
</profile>
<profile>
<id>postgres8</id>
<properties>
<postgres.driver.version>
8.3-603
</postgres.driver.version>
</properties>
</profile>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgres.driver.version}</version>
</dependency>
<properties>
<postgres.driver.version>8.3-603</postgres.driver.version>
</properties>
mvn clean test -Ppostgres9
But it didn't work. Profile variable is not overriding pom variable at all. Also, I cannot achieve that even with the ~/.m2/settings.xml.
Does anyone know how to do this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很长一段时间以来,我们一直在尝试在我们的项目中做类似的事情。一致工作的唯一方法是传递 -Dpostgres.driver.version=8.3-603。由于某种原因,在计算依赖关系之前不会对变量进行插值。
奇怪的是,它似乎适用于我在 Maven 3.0.2 下的一些项目。我现在正在尝试更深入地调查。
We've been trying to do similar things in our projects for quite a while. The only way that consistently works is to pass -Dpostgres.driver.version=8.3-603. For some reason, variables are not interpolated before dependencies are computed.
Oddly enough, it seems to work on some of my projects under Maven 3.0.2. I'm trying to investigate deeper now.
我也有同样的问题。
将版本(带有属性)从父 pom 中的依赖项移动到 dependencyManagement 为我解决了这个问题:
旧:
pom.xml:
新:
pom.xml
父pom:
I had the same problem.
Moving the version (with the property) from dependency to dependencyManagement in the parent pom solved it for me:
old:
pom.xml:
new:
pom.xml
parent pom: