gpt4 book ai didi

Eclipse自动构建输出与Maven命令行构建输出交互

转载 作者:行者123 更新时间:2023-12-04 03:39:46 25 4
gpt4 key购买 nike

由于两者都使用目标目录,因此Eclipse的build输出有时会干扰在命令行上运行的mvn builds的输出。

分离两个输出的最佳方法是什么?

最佳答案

将以下内容插入到pom.xml中。 Eclipse的“m2e.version”属性将激活以下配置文件,这将更改Eclipse构建的位置

<profiles>
<profile>
<id>IDE</id>
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<build>
<!-- Put the IDE's build output in a folder other than target, so that IDE builds don't interact with Maven builds -->
<directory>target-ide</directory>
</build>
</profile>
</profiles>

关于Eclipse自动构建输出与Maven命令行构建输出交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10208313/

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