tanamonの稀に良く書く日記

KEEP CALM AND DRINK BEER

maven-surefire-report-plugin

UnitTestのレポートを生成するmaven-surefire-report-pluginの設定

/project/reporting/plugins

      <!-- UnitTestReport -->
      <plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-surefire-report-plugin</artifactId>  
        <reportSets>
          <reportSet>  
           <reports>  
             <report>report-only</report>  
           </reports>  
         </reportSet>  
       </reportSets>  
      </plugin>  

reportSets/reportSet/reports/repotにreport-onlyゴールを指定することで、UnitTestを再実行しなくなります。reportSetsの記述に関してはPOM Referenceを参照のこと。