Add or fix CTF types toString
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.help / pom.xml
CommitLineData
067490ab
AM
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>linuxtools-lttng-parent</artifactId>
16 <groupId>org.eclipse.linuxtools.lttng</groupId>
17 <version>2.0.0-SNAPSHOT</version>
18 </parent>
19
20 <artifactId>org.eclipse.linuxtools.tmf.help</artifactId>
21 <version>2.0.0-SNAPSHOT</version>
22 <packaging>eclipse-plugin</packaging>
23
24 <name>Linux Tools TMF Help Plug-in</name>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-antrun-plugin</artifactId>
31 <version>1.6</version>
32 <executions>
33 <execution>
34 <id>generate-documentation</id>
35 <phase>generate-sources</phase>
36 <configuration>
37 <echo>Generating TMF Help Files</echo>
38 <tasks>
39 <property name="compile_classpath" refid="maven.compile.classpath" />
40 <ant target="build" inheritRefs="true" antfile="build.xml" />
41 </tasks>
42 </configuration>
43 <goals>
44 <goal>run</goal>
45 </goals>
46 </execution>
47 </executions>
48
49 <dependencies>
50 <dependency>
51 <groupId>org.apache.ant</groupId>
52 <artifactId>ant</artifactId>
53 <version>1.8.1</version>
54 </dependency>
55
56 <dependency>
57 <groupId>org.apache.ant</groupId>
58 <artifactId>ant-launcher</artifactId>
59 <version>1.8.1</version>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.ant</groupId>
64 <artifactId>ant-nodeps</artifactId>
65 <version>1.8.1</version>
66 </dependency>
67
68 </dependencies>
69 </plugin>
70 </plugins>
71 </build>
72
73 <groupId>org.eclipse.linuxtools.tmf</groupId>
74</project>
This page took 0.028694 seconds and 5 git commands to generate.