--- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml.orig 2015-01-09 17:32:22.105954064 +0000
+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml 2015-01-09 17:34:48.825961054 +0000
@@ -67,19 +67,22 @@
<build>
<plugins>
<plugin>
- <artifactId>maven-antrun-plugin</artifactId>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.3.2</version>
<executions>
<execution>
<id>natives</id>
<phase>process-resources</phase>
<configuration>
- <target>
- <property name="machine_gtk3" value="1" />
- <ant antfile="build.xml" target="build_libraries"/>
- </target>
+ <executable>ant</executable>
+ <arguments>
+ <argument>-Dmachine_gtk3=1</argument><argument>-Dtargets=install</argument>
+ <argument>build_libraries</argument>
+ </arguments>
</configuration>
<goals>
- <goal>run</goal>
+ <goal>exec</goal>
</goals>
</execution>
</executions>