diff --git a/dashboard/plugin.properties b/dashboard/plugin.properties
index 4bd51e77..e2fc37d9 100644
--- a/dashboard/plugin.properties
+++ b/dashboard/plugin.properties
@@ -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
diff --git a/dashboard/project.xml b/dashboard/project.xml
index 5898a6f7..bbbd29a0 100644
--- a/dashboard/project.xml
+++ b/dashboard/project.xml
@@ -23,7 +23,7 @@
3
maven-dashboard-plugin
Maven Dashboard Plugin
- 1.4
+ 1.5-SNAPSHOT
Generate a dashboard containing global statistics about other maven reports
Generate a statistic dashboard
http://maven.apache.org/reference/plugins/dashboard/
diff --git a/dashboard/src/plugin-resources/aggregators/jcoveragelipc.jelly b/dashboard/src/plugin-resources/aggregators/jcoveragelipc.jelly
new file mode 100644
index 00000000..ac5a9e79
--- /dev/null
+++ b/dashboard/src/plugin-resources/aggregators/jcoveragelipc.jelly
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ %
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dashboard/src/plugin-test/project.properties b/dashboard/src/plugin-test/project.properties
index 45c733e7..9f8749de 100644
--- a/dashboard/src/plugin-test/project.properties
+++ b/dashboard/src/plugin-test/project.properties
@@ -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.
diff --git a/dashboard/src/plugin-test/subproject1/project.xml b/dashboard/src/plugin-test/subproject1/project.xml
index ca22f33f..04cb997e 100644
--- a/dashboard/src/plugin-test/subproject1/project.xml
+++ b/dashboard/src/plugin-test/subproject1/project.xml
@@ -39,5 +39,6 @@
maven-clover-plugin
maven-junit-report-plugin
maven-simian-plugin
+ maven-jcoverage-plugin
diff --git a/dashboard/xdocs/aggregators.xml b/dashboard/xdocs/aggregators.xml
index 67f14881..73796839 100644
--- a/dashboard/xdocs/aggregators.xml
+++ b/dashboard/xdocs/aggregators.xml
@@ -137,6 +137,13 @@
Total number of duplicate lines found by Simian.
+
+ | jcoveragelipc |
+ JCoverage |
+
+ Total percentage of lines covered.
+ |
+
+
+
+ Added new jcoveragelipc aggregator that computes JCoverage
+ lines percentage.
+
+
Fixed documentation regarding the
maven.dashboard.rungoalsproperty.