blob: 3fae5eed7afe991cc8d267dd5b919df65ccaa015 [file] [log] [blame]
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.stem.tycho.internaldata</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>org.eclipse.stem.tycho</groupId>
<artifactId>org.eclipse.stem.tycho.bundles</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ant-magic</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="compile_classpath" refid="maven.compile.classpath" />
<property name="outputDir" value="${project.build.outputDirectory}" />
<property name="sourceDir" value="${project.build.sourceDirectory}" />
<ant
antfile="update.xml"
target="update_all" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>