Update all plugins and features to 1.0.0
[deliverable/tracecompass.git] / doc / org.eclipse.tracecompass.rcp.doc.user / pom.xml
CommitLineData
2b042910
BH
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>
8995fed0 15 <artifactId>org.eclipse.tracecompass.doc</artifactId>
8336b412 16 <groupId>org.eclipse.tracecompass</groupId>
c7e8f6e3 17 <version>1.0.0-SNAPSHOT</version>
2b042910
BH
18 </parent>
19
8995fed0 20 <artifactId>org.eclipse.tracecompass.rcp.doc.user</artifactId>
c7e8f6e3 21 <version>1.0.0-SNAPSHOT</version>
2b042910
BH
22 <packaging>eclipse-plugin</packaging>
23
8995fed0 24 <name>Trace Compass RCP User Guide</name>
2b042910
BH
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>
8995fed0 36 <echo>Generating Trace Compass RCP Help Files</echo>
28088f8b 37 <target>
2b042910
BH
38 <property name="compile_classpath" refid="maven.compile.classpath" />
39 <ant target="build" inheritRefs="true" antfile="build.xml" />
28088f8b 40 </target>
2b042910
BH
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>
8995fed0 50 <echo>Cleaning up generated Trace Compass RCP Help Files</echo>
28088f8b 51 <target>
2b042910 52 <ant target="clean" antfile="build.xml" />
28088f8b 53 </target>
2b042910
BH
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
963f45d5
AM
85 <profiles>
86 <profile>
87 <id>deploy-doc</id>
88 <build>
89 <plugins>
90 <plugin>
91 <artifactId>maven-antrun-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>deploy</id>
95 <phase>install</phase>
96 <goals>
97 <goal>run</goal>
98 </goals>
99 <configuration>
100 <target>
101 <delete includeemptydirs="false">
102 <fileset
103 dir="${docDestination}/org.eclipse.tracecompass.rcp.doc.user">
104 <include name="**" />
105 </fileset>
106 </delete>
107
108 <copy includeemptydirs="false" todir="${docDestination}/org.eclipse.tracecompass.rcp.doc.user">
109 <fileset dir="doc" includes="*.html,images/**"/>
110 </copy>
111 </target>
112 </configuration>
113 </execution>
114 </executions>
115 </plugin>
116 </plugins>
117 </build>
118 </profile>
119 </profiles>
120
a6140f01 121 <groupId>org.eclipse.tracecompass</groupId>
2b042910 122</project>
This page took 0.062979 seconds and 5 git commands to generate.