mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
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>
This commit is contained in:
parent
5700e27b7b
commit
39c0820517
1 changed files with 39 additions and 2 deletions
41
pom.xml
41
pom.xml
|
@ -15,8 +15,8 @@
|
||||||
<name>CDT Parent</name>
|
<name>CDT Parent</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<tycho-version>0.16.0</tycho-version>
|
<tycho-version>0.17.0</tycho-version>
|
||||||
<tycho-extras-version>0.16.0</tycho-extras-version>
|
<tycho-extras-version>0.17.0</tycho-extras-version>
|
||||||
<download-site>http://download.eclipse.org</download-site>
|
<download-site>http://download.eclipse.org</download-site>
|
||||||
<platform-version>3.8</platform-version>
|
<platform-version>3.8</platform-version>
|
||||||
<platform-site>${download-site}/eclipse/updates/${platform-version}</platform-site>
|
<platform-site>${download-site}/eclipse/updates/${platform-version}</platform-site>
|
||||||
|
@ -373,6 +373,43 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</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>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
|
|
Loading…
Add table
Reference in a new issue