doc: Move all help plugins to a doc/ subdirectory
[deliverable/tracecompass.git] / doc / org.eclipse.tracecompass.doc.user / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2011, Red Hat, Inc.
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
11 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12 <modelVersion>4.0.0</modelVersion>
13
14 <parent>
15 <artifactId>org.eclipse.tracecompass.doc</artifactId>
16 <groupId>org.eclipse.tracecompass</groupId>
17 <version>0.1.0-SNAPSHOT</version>
18 </parent>
19
20 <artifactId>org.eclipse.tracecompass.doc.user</artifactId>
21 <version>0.1.0-SNAPSHOT</version>
22 <packaging>eclipse-plugin</packaging>
23
24 <name>Trace Compass User Guide</name>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-antrun-plugin</artifactId>
31 <executions>
32 <execution>
33 <id>generate-documentation</id>
34 <phase>generate-sources</phase>
35 <configuration>
36 <echo>Generating Help Files</echo>
37 <target>
38 <property name="compile_classpath" refid="maven.compile.classpath" />
39 <ant target="build" inheritRefs="true" antfile="build.xml" />
40 </target>
41 </configuration>
42 <goals>
43 <goal>run</goal>
44 </goals>
45 </execution>
46 <execution>
47 <id>clean-documentation</id>
48 <phase>clean</phase>
49 <configuration>
50 <echo>Cleaning up generated Help Files</echo>
51 <target>
52 <ant target="clean" antfile="build.xml" />
53 </target>
54 </configuration>
55 <goals>
56 <goal>run</goal>
57 </goals>
58 </execution>
59 </executions>
60
61 <dependencies>
62 <dependency>
63 <groupId>org.apache.ant</groupId>
64 <artifactId>ant</artifactId>
65 <version>1.8.1</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.apache.ant</groupId>
70 <artifactId>ant-launcher</artifactId>
71 <version>1.8.1</version>
72 </dependency>
73
74 <dependency>
75 <groupId>org.apache.ant</groupId>
76 <artifactId>ant-nodeps</artifactId>
77 <version>1.8.1</version>
78 </dependency>
79
80 </dependencies>
81 </plugin>
82 </plugins>
83 </build>
84
85 <groupId>org.eclipse.tracecompass</groupId>
86 </project>
This page took 0.033175 seconds and 5 git commands to generate.