aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin
diff options
context:
space:
mode:
authorMirko Friedenhagen <mfriedenhagen@gmail.com>2013-11-30 21:47:41 +0100
committerMirko Friedenhagen <mfriedenhagen@gmail.com>2013-11-30 21:47:41 +0100
commit32c91799b038edf69e8f625c36915c3acc532eec (patch)
treeeb5b0fc5b486bdfa72aee47aecf03936131da1c4 /jacoco-maven-plugin
parentbb857097e3aded87b42d88d4c1aa2358ddcf0bb1 (diff)
downloadjacoco-32c91799b038edf69e8f625c36915c3acc532eec.tar.gz
Use <code> instead of {@code, because with the latter one we are
not able to use project.parent.build.directory. Formerly no documentation was rendered, unfortunately using <code> we need to escape HTML.
Diffstat (limited to 'jacoco-maven-plugin')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/MergeMojo.java22
1 files changed, 12 insertions, 10 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/MergeMojo.java b/jacoco-maven-plugin/src/org/jacoco/maven/MergeMojo.java
index ae0adc47..16018517 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/MergeMojo.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/MergeMojo.java
@@ -45,20 +45,22 @@ public class MergeMojo extends AbstractJacocoMojo {
/**
* This mojo accepts any number of execution data file sets.
*
- * Note that you need an <tt>implmentation</tt> hint on
+ * Note that you need an <tt>implementation</tt> hint on
* <tt>fileset</tt> with Maven 2 (not needed with Maven 3):
*
* <pre>
- * {@code
- * <fileSets>
- * <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
- * <directory>${project.parent.build.directory}</directory>
- * <includes>
- * <include>*.exec</include>
- * </includes>
- * </fileSet>
- * </fileSets>}
+ * <code>
+ * &lt;fileSets&gt;
+ * &lt;fileSet implementation="org.apache.maven.shared.model.fileset.FileSet"&gt;
+ * &lt;directory&gt;${project.parent.build.directory}&lt;/directory&gt;
+ * &lt;includes&gt;
+ * &lt;include&gt;*.exec&lt;/include&gt;
+ * &lt;/includes&gt;
+ * &lt;/fileSet&gt;
+ * &lt;/fileSets&gt;
+ * </code>
* </pre>
+ *
* @parameter expression="${jacoco.fileSets}"
* @required
*/