| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <parent> | |
| <artifactId>parent</artifactId> | |
| <groupId>org.eclipse.app4mc.migration</groupId> | |
| <relativePath>../../pom.xml</relativePath> | |
| <version>2.0.0</version> | |
| </parent> | |
| <modelVersion>4.0.0</modelVersion> | |
| <artifactId>org.eclipse.app4mc.amalthea.converters.help</artifactId> | |
| <packaging>eclipse-plugin</packaging> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-antrun-plugin</artifactId> | |
| <version>1.7</version> | |
| <executions> | |
| <execution> | |
| <configuration> | |
| <target> | |
| <ant antfile="build-help.ant"/> | |
| </target> | |
| </configuration> | |
| <goals> | |
| <goal>run</goal> | |
| </goals> | |
| <id>replace-build-token</id> | |
| <phase>generate-sources</phase> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <!-- do not publish this artifact to Maven repositories --> | |
| <plugin> | |
| <artifactId>maven-deploy-plugin</artifactId> | |
| <configuration> | |
| <skip>true</skip> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |