Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2013-05-14 09:37:44 +0000
committerMarc-Andre Laperle2013-05-19 13:43:56 +0000
commit39c082051716206a1090f4968e366249ef7eb48b (patch)
treea5545fe58ebae5613483a4f74a3e1aeb031e9bb8 /pom.xml
parent5700e27b7b65e5408d58e26b0a798dc5d5b8aac1 (diff)
downloadorg.eclipse.cdt-39c082051716206a1090f4968e366249ef7eb48b.tar.gz
org.eclipse.cdt-39c082051716206a1090f4968e366249ef7eb48b.tar.xz
org.eclipse.cdt-39c082051716206a1090f4968e366249ef7eb48b.zip
Use Tycho 0.17 for build.
This also required to add configuration for eclipserun plugin in the master pom. Change-Id: Id9814096a6ee430058470a8eefd6c18d1f90bebd Reviewed-on: https://git.eclipse.org/r/12773 Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> IP-Clean: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml41
1 files changed, 39 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 55917313e89..31ceeebbe65 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,8 +15,8 @@
<name>CDT Parent</name>
<properties>
- <tycho-version>0.16.0</tycho-version>
- <tycho-extras-version>0.16.0</tycho-extras-version>
+ <tycho-version>0.17.0</tycho-version>
+ <tycho-extras-version>0.17.0</tycho-extras-version>
<download-site>http://download.eclipse.org</download-site>
<platform-version>3.8</platform-version>
<platform-site>${download-site}/eclipse/updates/${platform-version}</platform-site>
@@ -373,6 +373,43 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-eclipserun-plugin</artifactId>
+ <version>${tycho-extras-version}</version>
+ <configuration>
+ <appArgLine>-application org.eclipse.ant.core.antRunner -buildfile customBuildCallbacks.xml build.index</appArgLine>
+ <dependencies>
+ <dependency>
+ <artifactId>org.apache.ant</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.help.base</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.ant.core</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ </dependencies>
+ <repositories>
+ <repository>
+ <id>platform</id>
+ <layout>p2</layout>
+ <url>${platform-site}</url>
+ </repository>
+ </repositories>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>eclipse-run</goal>
+ </goals>
+ <phase>compile</phase>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
</build>

Back to the top