blob: 548723faf5e770c932f5aac98bdbb6cd1aabb557 [file] [log] [blame]
Harald Mackamuld292a7f2016-07-07 16:23:12 +02001<?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 Mackamuld292a7f2016-07-07 16:23:12 +02008 <groupId>org.eclipse.app4mc.build</groupId>
9 <artifactId>parent</artifactId>
Harald Mackamul9e8f40b2020-06-22 13:40:10 +020010 <version>0.9.9-SNAPSHOT</version>
Dirk Fauth50304cb2020-02-17 14:12:19 +010011 <relativePath>../../pom.xml</relativePath>
Harald Mackamuld292a7f2016-07-07 16:23:12 +020012 </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 Mackamul22f1b092019-10-09 07:25:16 +020031 <ant antfile="build-help.ant" />
Harald Mackamuld292a7f2016-07-07 16:23:12 +020032 </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>