- Added several other aggregators - Do not run report artifact goal if it has already been run by a previous aggregator git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114266 13f79535-47bb-0310-9956-ffa450edef68
61 lines
2.3 KiB
XML
61 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<document>
|
|
<properties>
|
|
<title>Maven Dashboard plugin properties</title>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
</properties>
|
|
<body>
|
|
<section name="Dashboard plugin properties">
|
|
<source><![CDATA[
|
|
# Properties for the dashboard reactor
|
|
# ------------------------------------
|
|
|
|
maven.dashboard.basedir=${basedir}
|
|
maven.dashboard.includes=*/project.xml
|
|
maven.dashboard.excludes=**/target/**/project.xml,project.xml
|
|
maven.dashboard.ignoreFailures=false
|
|
|
|
# Generated dashboard xml data file
|
|
maven.dashboard.report.xml = ${maven.build.dir}/dashboard-data.xml
|
|
|
|
# Generated dashboard xdoc file name (without the extension).
|
|
# Note: The value must not include any path as the xdoc will be
|
|
# generated in ${maven.gen.docs}.
|
|
maven.dashboard.report.xdoc = dashboard-report
|
|
|
|
# Location of JSL template to generate the xdoc file
|
|
maven.dashboard.template = ${plugin.resources}/templates/dashboard.jsl
|
|
|
|
# Decide whether a call to dashboard:report will call the reactor
|
|
# on the child projects to generate individual dashboard data. If you
|
|
# already using the multiproject project or the reactor, a better option
|
|
# is to add dashboard:report-single to the list of goals you're running.
|
|
# In which case, you'll need to set the following property to false
|
|
# (otherwise the reactor will be run again on your child projects).
|
|
maven.dashboard.runreactor = true
|
|
|
|
# Properties for gathering dashboard data for a single project
|
|
# ------------------------------------------------------------
|
|
|
|
# Location of default dashboard aggregators
|
|
maven.dashboard.aggregators.dir = ${plugin.resources}/reports
|
|
|
|
# Comma-separated list of aggregators to use
|
|
maven.dashboard.aggregators = checkstyle
|
|
|
|
# Properties for the default checkstyle aggregator
|
|
maven.dashboard.aggregator.checkstyle.script = ${maven.dashboard.aggregators.dir}/checkstyle.jelly
|
|
maven.dashboard.aggregator.checkstyle.artifact = ${maven.build.dir}/checkstyle-raw-report.xml
|
|
maven.dashboard.aggregator.checkstyle.label = Checkstyle errors
|
|
maven.dashboard.aggregator.checkstyle.goal = checkstyle
|
|
|
|
# Generated dashboard data for a single project
|
|
maven.dashboard.report.single = ${maven.build.dir}/dashboard-single.xml
|
|
|
|
# Decide whether to call goals associated with report types or not
|
|
maven.dashboard.rungoals = true
|
|
]]></source>
|
|
</section>
|
|
</body>
|
|
</document> |