Added new <code>jcoveragelipc</code> aggregator that computes JCoverage lines percentage.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@116041 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2004-09-06 16:56:50 +00:00
parent 7ba1d6fc1f
commit 2f5f396b71
7 changed files with 63 additions and 2 deletions

View File

@ -175,3 +175,10 @@ maven.dashboard.aggregator.simiantdl.artifact = ${maven.build.dir}/generated-xdo
maven.dashboard.aggregator.simiantdl.label = Simian TDL
maven.dashboard.aggregator.simiantdl.goal = maven-simian-plugin:report
maven.dashboard.aggregator.simiantdl.description = Simian Total Duplicate Lines
# Properties for the JCoverage covered lines percent aggregator
maven.dashboard.aggregator.jcoveragelipc.script = ${maven.dashboard.aggregators.dir}/jcoveragelipc.jelly
maven.dashboard.aggregator.jcoveragelipc.artifact = ${maven.build.dir}/jcoverage/coverage.xml
maven.dashboard.aggregator.jcoveragelipc.label = JCoverage %lines
maven.dashboard.aggregator.jcoveragelipc.goal = maven-jcoverage-plugin:report
maven.dashboard.aggregator.jcoveragelipc.description = JCoverage covered lines percentile

View File

@ -23,7 +23,7 @@
<pomVersion>3</pomVersion>
<id>maven-dashboard-plugin</id>
<name>Maven Dashboard Plugin</name>
<currentVersion>1.4</currentVersion>
<currentVersion>1.5-SNAPSHOT</currentVersion>
<description>Generate a dashboard containing global statistics about other maven reports</description>
<shortDescription>Generate a statistic dashboard</shortDescription>
<url>http://maven.apache.org/reference/plugins/dashboard/</url>

View File

@ -0,0 +1,40 @@
<?xml version="1.0"?>
<!--
/*
* Copyright 2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<!--
========================================================================
JCoverage aggregator. Extracts JCoverage %lines.
========================================================================
-->
<j:jelly xmlns:j="jelly:core" xmlns:x="jelly:xml" xmlns:u="jelly:util">
<u:file var="artifactAsFile"
name="${maven.dashboard.aggregator.jcoveragelipc.artifact}"/>
<j:choose>
<j:when test="${artifactAsFile.exists()}">
<x:parse var="doc" xml="${artifactAsFile}"/>
<x:expr select="floor(100*count($doc/coverage/class/line[@hits>0]) div count($doc/coverage/class/line[@number>0])+0.5)"/>
%
</j:when>
<j:otherwise>
<j:expr value="-"/>
</j:otherwise>
</j:choose>
</j:jelly>

View File

@ -36,7 +36,7 @@ maven.dashboard.runreactor = false
# Define what dashboard aggregators will be run. This property is inherited
# by the subprojects and thus they don't need to define it again.
maven.dashboard.aggregators = csall,cserrors,cswarnings,csfiles,clovertpc,cloverloc,cloverncloc,junittests,junitpassrate,junitfailures,juniterrors,simiantdl,pmdfiles,pmdviolations
maven.dashboard.aggregators = csall,cserrors,cswarnings,csfiles,clovertpc,cloverloc,cloverncloc,junittests,junitpassrate,junitfailures,juniterrors,simiantdl,pmdfiles,pmdviolations,jcoveragelipc
# Make sure that an XML report is generated whenever Clover is run. Also
# inherited by the subprojects.

View File

@ -39,5 +39,6 @@
<report>maven-clover-plugin</report>
<report>maven-junit-report-plugin</report>
<report>maven-simian-plugin</report>
<report>maven-jcoverage-plugin</report>
</reports>
</project>

View File

@ -137,6 +137,13 @@
Total number of duplicate lines found by Simian.
</td>
</tr>
<tr>
<td>jcoveragelipc</td>
<td>JCoverage</td>
<td>
Total percentage of lines covered.
</td>
</tr>
</table>
</section>
</body>

View File

@ -24,6 +24,12 @@
<author email="vmassol@apache.org">Vincent Massol</author>
</properties>
<body>
<release version="1.5-SNAPSHOT" date="in CVS">
<action dev="vmassol" type="add" issue="MPDASHBOARD-11" due-to="Thomas Recloux">
Added new <code>jcoveragelipc</code> aggregator that computes JCoverage
lines percentage.
</action>
</release>
<release version="1.4" date="2004-08-15">
<action dev="vmassol" type="fix" issue="MPDASHBOARD-8" due-to="Carlos Sanchez">Fixed documentation regarding the
<code>maven.dashboard.rungoals</code>property.