Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 1 | <?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 Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 7 | <name>Vex Documentation</name> |
| 8 | |
| 9 | <parent> |
| 10 | <artifactId>org.eclipse.vex-releng</artifactId> |
| 11 | <groupId>org.eclipse.vex</groupId> |
Florian Thienel | 1af74b9 | 2012-09-23 11:47:58 +0200 | [diff] [blame] | 12 | <version>1.1.0-SNAPSHOT</version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 13 | <relativePath>../org.eclipse.vex.releng/pom.xml</relativePath> |
| 14 | </parent> |
| 15 | |
| 16 | <build> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
| 20 | <artifactId>maven-antrun-plugin</artifactId> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 21 | <version>1.7</version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 22 | <executions> |
| 23 | <execution> |
| 24 | <id>mylyn-wiki-text</id> |
| 25 | <phase>generate-sources</phase> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 26 | <configuration> |
| 27 | <tasks> |
| 28 | <ant antfile="buildHelp.xml" inheritRefs="true" /> |
| 29 | </tasks> |
| 30 | </configuration> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 31 | <goals> |
| 32 | <goal>run</goal> |
| 33 | </goals> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 34 | </execution> |
| 35 | </executions> |
| 36 | </plugin> |
| 37 | </plugins> |
| 38 | </build> |
| 39 | </project> |