jetty-maven-plugin 7.x用于集成测试时,会在运行时动态查找可用端口。如何保存找到的端口号并在 Java 集成测试中使用它?也许 jetty-maven-plugin 可以将其保存到系统变量中?
问问题
2304 次
1 回答
4
这是它的工作原理:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<portNames>
<portName>jetty.port</portName>
<portName>jetty.port.stop</portName>
</portNames>
</configuration>
<executions>
<execution>
<id>reserve-port</id>
<phase>pre-integration-test</phase>
<goals>
<goal>reserve-network-port</goal>
</goals>
</execution>
</executions>
</plugin>
然后${jetty.port}
可以用于码头插件。
于 2011-07-08T20:49:59.770 回答