Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2019-05-21 16:18:42 +0000
committerSravan Kumar Lakkimsetti2019-05-24 09:08:19 +0000
commitb0b34823cbc17dd8710124c640930f094eeac8ce (patch)
treea1311de53ec9bab4245ab019a13af37a8ea29097
parent27536a6a4e1d4ef64896b4cb691b3722ef8fda1e (diff)
downloadeclipse.platform.releng.aggregator-b0b34823cbc17dd8710124c640930f094eeac8ce.tar.gz
eclipse.platform.releng.aggregator-b0b34823cbc17dd8710124c640930f094eeac8ce.tar.xz
eclipse.platform.releng.aggregator-b0b34823cbc17dd8710124c640930f094eeac8ce.zip
Bug 474156 - Move execution config in execution block
This prevents the specific configuration of the antRunner step to leak in other potential invocations of tycho-eclipserun-plugin Change-Id: I84e8c9c850baf7897a3a2f5dfbeae63058c963f6 Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--eclipse-platform-parent/pom.xml80
1 files changed, 40 insertions, 40 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index e0c270d88..66a932e93 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -897,52 +897,52 @@
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
- <configuration>
- <!-- actual indexer call -->
- <appArgLine>-data target/apibuild-workspace -application org.eclipse.ant.core.antRunner -buildfile
- target/.apibuild.xml</appArgLine>
- <dependencies>
- <!-- list of bundles that we need -->
- <dependency>
- <artifactId>org.eclipse.ant.core</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>org.apache.ant</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>org.eclipse.pde.api.tools</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>org.eclipse.pde.build</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>org.eclipse.pde.core</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>org.eclipse.equinox.launcher</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>org.eclipse.osgi.compatibility.state</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- <dependency>
- <artifactId>javax.annotation</artifactId>
- <type>eclipse-plugin</type>
- </dependency>
- </dependencies>
- </configuration>
<executions>
<execution>
<goals>
<goal>eclipse-run</goal>
</goals>
<phase>compile</phase>
+ <configuration>
+ <!-- actual indexer call -->
+ <appArgLine>-data target/apibuild-workspace -application org.eclipse.ant.core.antRunner -buildfile
+ target/.apibuild.xml</appArgLine>
+ <dependencies>
+ <!-- list of bundles that we need -->
+ <dependency>
+ <artifactId>org.eclipse.ant.core</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.apache.ant</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.pde.api.tools</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.pde.build</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.pde.core</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.equinox.launcher</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.osgi.compatibility.state</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>javax.annotation</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ </dependencies>
+ </configuration>
</execution>
</executions>
</plugin>

Back to the top