Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Gradle | Gradle Cobertura Pluginのser,reportsのクリーンタスクを定義

概要

Gradle Cobertura Pluginのser,reportsのタスクを定義

内容

前提としてCobertura Pluginの導入については下記参照。
http://d.hatena.ne.jp/tbpg/20130614/1371234136

task cleanCobertura << {
  delete cobertura.coverageReportDir
  delete cobertura.coverageDatafile
}