2014-04-25 2 views

답변

0

maven-clover2-plugin에서 targetPercentage의 구성을 지정할 수 있습니다. 제외 된 클래스를 지정할 수도 있습니다.

<configuration> 
    <targetPercentage>60%</targetPercentage> 
    <excludes> 
     <exclude> myPackage/AppConfig.java</exclude> 
    </excludes> 
</configuration>