PR: MPJUNITREPORT-10
Add ability to specify a custom jsl transform. New property maven.junit.report.jsl. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@393637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bb027cc5fd
commit
ba7fca35bc
@ -75,10 +75,15 @@
|
||||
</ant:fileset>
|
||||
</ant:junitreport>
|
||||
|
||||
<j:set var="stylesheet" value="${maven.junit.report.jsl}"/>
|
||||
<j:if test="${empty(stylesheet)}">
|
||||
<j:set var="stylesheet" value="${plugin.resources}/junit.jsl"/>
|
||||
</j:if>
|
||||
|
||||
<doc:jsl
|
||||
input="${maven.build.dir}/TESTS-TestSuites.xml"
|
||||
output="junit-report.xml"
|
||||
stylesheet="${plugin.resources}/junit.jsl"
|
||||
stylesheet="${stylesheet}"
|
||||
outputMode="xml"
|
||||
prettyPrint="false"
|
||||
/>
|
||||
|
||||
@ -26,6 +26,7 @@
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.5.1-SNAPSHOT" date="in SVN">
|
||||
<action dev="ltheussl" type="add" issue="MPJUNITREPORT-10">Add ability to specify a custom jsl transform. New property <code>maven.junit.report.jsl</code>.</action>
|
||||
<action dev="ltheussl" type="add" issue="MPJUNITREPORT-11" due-to="Cyrille Le Clerc">Keep nested exceptions in truncated stack traces.</action>
|
||||
<action dev="ltheussl" type="add" issue="MPJUNITREPORT-6" due-to="Cyrille Le Clerc">Include System.out/System.err in the generated report.</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPJUNITREPORT-8">Add description for default goal.</action>
|
||||
|
||||
@ -31,6 +31,16 @@
|
||||
<th>Optional?</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>maven.junit.report.jsl</td>
|
||||
<td>Yes</td>
|
||||
<td>
|
||||
<p>
|
||||
Absolute path to a custom jelly style sheet
|
||||
used to generate the report.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>maven.conf.dir</td>
|
||||
<td>Yes</td>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user