blob: 08981b04eb839bbc66b10a48759a769d2710772d [file] [log] [blame]
Florian Thienelfa641e52011-11-10 00:49:26 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <artifactId>org.eclipse.vex.documentation</artifactId>
6 <packaging>eclipse-plugin</packaging>
Florian Thienel1af74b92012-09-23 11:47:58 +02007 <version>1.1.0-SNAPSHOT</version>
Florian Thienelfa641e52011-11-10 00:49:26 +01008 <name>Vex Documentation</name>
9
10 <parent>
11 <artifactId>org.eclipse.vex-releng</artifactId>
12 <groupId>org.eclipse.vex</groupId>
Florian Thienel1af74b92012-09-23 11:47:58 +020013 <version>1.1.0-SNAPSHOT</version>
Florian Thienelfa641e52011-11-10 00:49:26 +010014 <relativePath>../org.eclipse.vex.releng/pom.xml</relativePath>
15 </parent>
16
17 <build>
18 <pluginManagement>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-antrun-plugin</artifactId>
23 <version>1.4</version>
24 </plugin>
25 </plugins>
26 </pluginManagement>
27
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-antrun-plugin</artifactId>
32 <executions>
33 <execution>
34 <id>mylyn-wiki-text</id>
35 <phase>generate-sources</phase>
36 <goals>
37 <goal>run</goal>
38 </goals>
39 <configuration>
40 <tasks>
41 <ant antfile="buildHelp.xml" inheritRefs="true" />
42 </tasks>
43 </configuration>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49</project>