Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Montplaisir2013-02-19 13:15:37 +0000
committerAlexandre Montplaisir2013-02-20 22:02:32 +0000
commita9567d7b7cb782d9abfa8c83023d9d0e5128b029 (patch)
treefd4b4eaf4da3d7653637a04d7f806ed727d5704a /org.eclipse.linuxtools.tmf.help/pom.xml
parent419f09a8b640df55fa8e65bda959db7d31000fe7 (diff)
downloadorg.eclipse.tracecompass-a9567d7b7cb782d9abfa8c83023d9d0e5128b029.tar.gz
org.eclipse.tracecompass-a9567d7b7cb782d9abfa8c83023d9d0e5128b029.tar.xz
org.eclipse.tracecompass-a9567d7b7cb782d9abfa8c83023d9d0e5128b029.zip
tmf: Tell Maven to clean the documentation too
Change-Id: Iee96f5717a666c45bc79fb32e861067bf286f39c Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im> Reviewed-on: https://git.eclipse.org/r/10469 Tested-by: Hudson CI Reviewed-by: Bernd Hufmann <bhufmann@gmail.com> IP-Clean: Bernd Hufmann <bhufmann@gmail.com> Tested-by: Bernd Hufmann <bhufmann@gmail.com>
Diffstat (limited to 'org.eclipse.linuxtools.tmf.help/pom.xml')
-rw-r--r--org.eclipse.linuxtools.tmf.help/pom.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/org.eclipse.linuxtools.tmf.help/pom.xml b/org.eclipse.linuxtools.tmf.help/pom.xml
index a7e681fc33..cf1656b5ca 100644
--- a/org.eclipse.linuxtools.tmf.help/pom.xml
+++ b/org.eclipse.linuxtools.tmf.help/pom.xml
@@ -28,7 +28,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
<executions>
<execution>
<id>generate-documentation</id>
@@ -44,6 +43,19 @@
<goal>run</goal>
</goals>
</execution>
+ <execution>
+ <id>clean-documentation</id>
+ <phase>clean</phase>
+ <configuration>
+ <echo>Cleaning up generated TMF Help Files</echo>
+ <tasks>
+ <ant target="clean" antfile="build.xml" />
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
</executions>
<dependencies>

Back to the top