Harald Mackamul | d292a7f | 2016-07-07 16:23:12 +0200 | [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/xsd/maven-4.0.0.xsd"> |
| 4 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <relativePath>../../build/org.eclipse.app4mc.build/pom.xml</relativePath> |
| 9 | <groupId>org.eclipse.app4mc.build</groupId> |
| 10 | <artifactId>parent</artifactId> |
| 11 | <version>0.7.0-SNAPSHOT</version> |
| 12 | </parent> |
| 13 | |
| 14 | <artifactId>org.eclipse.app4mc.amalthea.workflow.help</artifactId> |
| 15 | <packaging>eclipse-plugin</packaging> |
| 16 | |
| 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.maven.plugins</groupId> |
| 21 | <artifactId>maven-antrun-plugin</artifactId> |
| 22 | <version>1.7</version> |
| 23 | |
| 24 | <executions> |
| 25 | <execution> |
| 26 | <id>replace-build-token</id> |
| 27 | <phase>generate-sources</phase> |
| 28 | |
| 29 | <configuration> |
| 30 | <target> |
| 31 | <ant antfile="../org.eclipse.app4mc.help/build.xml" /> |
| 32 | </target> |
| 33 | </configuration> |
| 34 | |
| 35 | <goals> |
| 36 | <goal>run</goal> |
| 37 | </goals> |
| 38 | </execution> |
| 39 | </executions> |
| 40 | |
| 41 | </plugin> |
| 42 | </plugins> |
| 43 | </build> |
| 44 | </project> |