bf3e70e63846297535943404535db0f23b582f23
[deliverable/tracecompass.git] / doc / org.eclipse.tracecompass.tmf.pcap.doc.user / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014, Ericsson
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.tmf.pcap.doc.user</artifactId>
21 <version>0.1.0-SNAPSHOT</version>
22 <packaging>eclipse-plugin</packaging>
23
24 <name>Trace Compass Pcap 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 Pcap 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 Pcap 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 <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.tmf.pcap.doc.user">
104 <include name="**" />
105 </fileset>
106 </delete>
107
108 <copy includeemptydirs="false" todir="${docDestination}/org.eclipse.tracecompass.tmf.pcap.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
121 <groupId>org.eclipse.tracecompass</groupId>
122 </project>
This page took 0.032921 seconds and 4 git commands to generate.