gpt4 book ai didi

java - maven2 中的替代插件执行?

转载 作者:行者123 更新时间:2023-12-01 16:12:28 25 4
gpt4 key购买 nike

在包含的配置中,“stop-jetty”执行是否继承了外部“configuration”元素的任何配置信息?即使我在 stop-jetty 执行中省略了 stopPort,“stop-jetty”执行中的 stopPort 也会是 9999 吗?有关此继承如何工作的任何文档引用也很棒。

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<contextPath>/foobar</contextPath>
<stopKey>foo</stopKey>
<stopPort>9999</stopPort>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>
<daemon>true</daemon>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
<configuration>
<stopKey>foo</stopKey> <!-- Is this necessary ??? -->
<stopPort>9999</stopPort> <!-- Is this necessary ??? -->
</configuration>
</execution>
</executions>
</plugin>

最佳答案

文档 here会建议 /plugin/configuration 由每个 execution 共享,因此 /plugin/executions/execution/configuration 有效地继承。

由于插件实现了 JavaBeans 标准,这意味着执行中的配置也会被覆盖。

关于java - maven2 中的替代插件执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/541043/

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