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> |
Harald Mackamul | d292a7f | 2016-07-07 16:23:12 +0200 | [diff] [blame] | 8 | <groupId>org.eclipse.app4mc.build</groupId> |
| 9 | <artifactId>parent</artifactId> |
Harald Mackamul | 9e8f40b | 2020-06-22 13:40:10 +0200 | [diff] [blame] | 10 | <version>0.9.9-SNAPSHOT</version> |
Dirk Fauth | 50304cb | 2020-02-17 14:12:19 +0100 | [diff] [blame] | 11 | <relativePath>../../pom.xml</relativePath> |
Harald Mackamul | d292a7f | 2016-07-07 16:23:12 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | <artifactId>org.eclipse.app4mc.amalthea.edit.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> |
Harald Mackamul | 22f1b09 | 2019-10-09 07:25:16 +0200 | [diff] [blame] | 31 | <ant antfile="build-help.ant" /> |
Harald Mackamul | d292a7f | 2016-07-07 16:23:12 +0200 | [diff] [blame] | 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> |