Remove clover plugin in favor our jacoco
This commit is contained in:
@ -1,44 +0,0 @@
|
||||
<project name="Clover Report" default="current">
|
||||
|
||||
<clover-format id="clover.format" type="${type}" orderBy="${orderBy}" filter="${filter}"/>
|
||||
|
||||
<clover-setup initString="${cloverdb}"/>
|
||||
|
||||
<fileset id="test.sources" dir="${projectDir}">
|
||||
<include name="${testPattern}"/>
|
||||
</fileset>
|
||||
|
||||
|
||||
<clover-columns id="clover.columns">
|
||||
<totalChildren/>
|
||||
<filteredElements/>
|
||||
<avgMethodComplexity/>
|
||||
<uncoveredElements format="raw"/>
|
||||
<totalPercentageCovered format="longbar"/>
|
||||
</clover-columns>
|
||||
|
||||
<target name="historical">
|
||||
<clover-report>
|
||||
<current outfile="${output}" summary="${summary}" charset="${charset}" title="${title}" titleAnchor="${titleAnchor}" span="${span}">
|
||||
<format refid="clover.format"/>
|
||||
<testsources refid="test.sources"/>
|
||||
<columns refid="clover.columns"/>
|
||||
</current>
|
||||
<historical outfile="${historyout}" historydir="${history}" charset="${charset}" title="${title}" titleAnchor="${titleAnchor}"
|
||||
span="${span}">
|
||||
<format refid="clover.format"/>
|
||||
</historical>
|
||||
</clover-report>
|
||||
</target>
|
||||
|
||||
<target name="current">
|
||||
<clover-report>
|
||||
<current outfile="${output}" title="${title}" titleAnchor="${titleAnchor}" summary="${summary}" charset="${charset}" span="${span}">
|
||||
<format refid="clover.format"/>
|
||||
<testsources refid="test.sources"/>
|
||||
<columns refid="clover.columns"/>
|
||||
</current>
|
||||
</clover-report>
|
||||
</target>
|
||||
|
||||
</project>
|
@ -1,4 +0,0 @@
|
||||
mQRNpelqeDUotdBEScNOlgpiDqmVUiNhLxwukASgijdFWnK
|
||||
mj2L08UdBqBDvNCX8ScrzJ1JD2K089veHd4LKfEios4rs2U
|
||||
MMpqWXrRRqmNpmQooONvxomrrPnQnrPmMOxWtvvRuxMpnmq
|
||||
mUUnopnurnsmmmmmUUnopnurnsmmmmmUUmjaWUUor
|
37
pom.xml
37
pom.xml
@ -261,7 +261,6 @@
|
||||
<javacc.version>5.0</javacc.version>
|
||||
<surefire.version>2.17</surefire.version>
|
||||
<checkstyle.version>2.13</checkstyle.version>
|
||||
<clover.version>2.5.1</clover.version>
|
||||
<pmd.plugin.version>3.5</pmd.plugin.version>
|
||||
<java.version>1.7</java.version>
|
||||
<ant.version>1.9.4</ant.version>
|
||||
@ -480,27 +479,6 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- As Clover can be quite an hassle, know that you can skip
|
||||
it by using the following option when running mvn: $ mvn clean -Dmaven.clover.skip=true
|
||||
site -->
|
||||
<plugin>
|
||||
<groupId>com.atlassian.maven.plugins</groupId>
|
||||
<artifactId>maven-clover2-plugin</artifactId>
|
||||
<version>${clover.version}</version>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<jdk>${java.version}</jdk>
|
||||
<licenseLocation>${config.basedir}/licences/clover2.license</licenseLocation>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>pre-site</phase>
|
||||
<goals>
|
||||
<goal>instrument</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
@ -584,12 +562,6 @@
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Emma is a test coverage tools to be used instead of clover.
|
||||
As the mvn2 plugin is not released yet, the plugin is commented out, so you
|
||||
build won't fail: You can get an Emma plugin for Maven2 at http://jira.codehaus.org/browse/MOJO-762
|
||||
Download the tarball, extract, cd into dir, run $ mvn install. -->
|
||||
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId>
|
||||
</plugin> -->
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
@ -639,15 +611,6 @@
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>${surefire.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.atlassian.maven.plugins</groupId>
|
||||
<artifactId>maven-clover2-plugin</artifactId>
|
||||
<version>${clover.version}</version>
|
||||
<configuration>
|
||||
<licenseLocation>${config.basedir}/licences/clover2.license</licenseLocation>
|
||||
<reportDescriptor>${config.basedir}/etc/default-clover-report.xml</reportDescriptor>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
|
Reference in New Issue
Block a user