pom.xml に次の構成があります
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>reserve-network-port</id>
<goals>
<goal>reserve-network-port</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<portNames>
<portName>cassandra.rpcPort</portName>
<portName>cassandra.jmxPort</portName>
<portName>cassandra.storagePort</portName>
<portName>cassandra.stopPort</portName>
</portNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<enableAssertions>true</enableAssertions>
<excludes>
<exclude>none</exclude>
</excludes>
<includes>
<include>**/integration/**/*Test.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cassandra-maven-plugin</artifactId>
<version>1.2.1-1</version>
<executions>
<execution>
<id>start-cassandra</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop-cassandra</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<includes>
<include>*.*</include>
</includes>
<filtering>true</filtering>
</testResource>
</testResources>
プロパティファイルには、次の行があります cassandra_host=127.0.0.1:${cassandra.rpcPort}
コードは、このプロパティを使用して cassandra のインスタンスに接続します。そのため、mvn clean install を実行するたびに、cassandra.rpcPort が 2 回生成されます。1 つは残りの実行時、もう 1 つは cobertura の実行時です。例えば。
[INFO] Reserved port 60315 for cassandra.rpcPort
[INFO] Reserved port 60316 for cassandra.jmxPort
[INFO] Reserved port 60317 for cassandra.storagePort
[INFO] Reserved port 60318 for cassandra.stopPort
その後、cobertura が実行されると、
[INFO] Reserved port 60319 for cassandra.rpcPort
[INFO] Reserved port 60320 for cassandra.jmxPort
[INFO] Reserved port 60321 for cassandra.storagePort
[INFO] Reserved port 60322 for cassandra.stopPort
そして、cassandra-maven-plugin は、rpc_port: 60315 を持つ target/cassandra/conf/cassandra.yaml ファイルを生成します (オリジン ポートであり、cobertura からのものではありません)。ただし、プロパティ ファイルには、cobertura によって生成されたポートの値が含まれています。
cobertura プラグインを無効にすると、すべてが正常に実行されます。この問題を回避する方法を知っている人はいますか?
ありがとう&よろしく ティン