|
From: Carlos S. <car...@us...> - 2005-07-12 23:28:18
|
carlossg 05/07/12 16:28:11
Modified: cobertura plugin.jelly
Log:
Make the generated xdoc/cobertura dir
Revision Changes Path
1.9 +8 -5 maven-plugins/cobertura/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.jelly,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- plugin.jelly 12 Jul 2005 23:24:54 -0000 1.8
+++ plugin.jelly 12 Jul 2005 23:28:10 -0000 1.9
@@ -220,11 +220,14 @@
-->
<goal name="cobertura:check-report" prereqs="cobertura:check-report-text"
description="Create a xdoc report with classes not meeting the test coverage requirements">
- <doc:text-xdoc
- title="Cobertura Check Report"
- section="Cobertura Report"
- inputText="${checkFailedLines}"
- output="${maven.gen.docs}/cobertura/cobertura-check.xml"/>
+
+ <mkdir dir="${maven.gen.docs}/cobertura"/>
+ <doc:text-xdoc
+ title="Cobertura Check Report"
+ section="Cobertura Report"
+ inputText="${checkFailedLines}"
+ output="${maven.gen.docs}/cobertura/cobertura-check.xml"/>
+
</goal>
|