2007年11月21日水曜日

mavenで通常のtestをskipしてintegration-testフェーズでtestを走らせる

maven-surefire-pluginの設定を行う。
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <skip>true</skip>
  </configuration>
  <executions>
    <execution>
      <id>surefire-it</id>
      <phase>integration-test</phase>
      <goals>
        <goal>test</goal>
      </goals>
      <configuration>
        <skip>false</skip>
      </configuration>
    </execution>
  </executions>
  <version>2.3</version>
</plugin>
参考:MavenでのIntegrationTest - 開発Memo

Blogged with Flock

0 件のコメント: