gpt4 book ai didi

maven - 如何在Maven3中指定事件配置文件

转载 作者:行者123 更新时间:2023-12-04 03:30:47 24 4
gpt4 key购买 nike

我们的应用程序包含各种事件配置文件(例如A1,A2,A3,A5 ...),这些配置文件分别在profiles.xml文件中定义。 Maven 3希望将所有概要文件信息存储为pom.xml文件本身的一部分。

如何在pom.xml文件中指定事件配置文件的列表,以便避免在命令行中指定它们(例如mvn -PA1,A2,A3,A5)

最佳答案

应该这样做吗:

<profiles>
<profile>
<id>profile-1</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
...
</profile>
</profiles>

here

关于maven - 如何在Maven3中指定事件配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4766396/

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