Во включенной конфигурации выполнение «stop-jetty» наследует какую-либо информацию о конфигурации от внешнего элемента «configuration»? Будет ли StopPort 9999 в исполнении "Stop-Jetty", даже если я опущу его в исполнении Stop-Jetty? Любые ссылки на документацию о том, как работает это наследование, также будут замечательными.
<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>