mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 06:55:23 +02:00
[releng] working on tycho-maven build-migrating to Juno.
This commit is contained in:
parent
2960a63f8b
commit
aa3e12bad8
1 changed files with 363 additions and 311 deletions
66
rse/pom.xml
66
rse/pom.xml
|
@ -9,7 +9,6 @@
|
|||
<artifactId>eclipse-parent</artifactId>
|
||||
<version>3</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>tm-parent</artifactId>
|
||||
<version>3.8.0-SNAPSHOT</version>
|
||||
|
@ -28,9 +27,8 @@
|
|||
</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
<properties>
|
||||
<!-- <properties>
|
||||
<tycho-version>0.14.0</tycho-version>
|
||||
<!-- <platform-version>3.7</platform-version> -->
|
||||
<platform-version-name>indigo</platform-version-name>
|
||||
<platform-site>http://download.eclipse.org/releases/${platform-version-name}</platform-site>
|
||||
<sdk-version>3.7</sdk-version>
|
||||
|
@ -39,27 +37,45 @@
|
|||
<rxtx-version>1.0.0.7837QcJa5vE7MnhE77YA7AU3SWUlbntVZAnlDoIGojcQd</rxtx-version>
|
||||
<rxtx-site>http://rxtx.qbang.org/eclipse</rxtx-site>
|
||||
</properties>
|
||||
-->
|
||||
<properties>
|
||||
<tycho-version>0.14.1</tycho-version>
|
||||
<tycho-extras-version>0.14.0</tycho-extras-version>
|
||||
<platform-version-name>juno</platform-version-name>
|
||||
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
|
||||
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/S20120123151124/repository</orbit-site>
|
||||
<rxtx-version>1.0.0.7837QcJa5vE7MnhE77YA7AU3SWUlbntVZAnlDoIGojcQd</rxtx-version>
|
||||
<rxtx-site>http://rxtx.qbang.org/eclipse</rxtx-site>
|
||||
</properties>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>maven.eclipse.org</id>
|
||||
<url>http://maven.eclipse.org/nexus/content/groups/public/</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<!-- <pluginRepository>
|
||||
<id>tycho-0.14.0-staged</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-004/</url>
|
||||
</pluginRepository>
|
||||
-->
|
||||
</pluginRepositories>
|
||||
<repositories>
|
||||
<repository>
|
||||
<!--<repository>
|
||||
<id>platform-${platform-version}</id>
|
||||
<url>${platform-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
-->
|
||||
<repository>
|
||||
<id>orbit</id>
|
||||
<layout>p2</layout>
|
||||
<url>${orbit-site}</url>
|
||||
</repository>
|
||||
<!-- <repository>
|
||||
<id>orbit-${orbit-version}</id>
|
||||
<url>${orbit-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
-->
|
||||
<repository>
|
||||
<id>rxtx-${rxtx-version}</id>
|
||||
<url>${rxtx-site}</url>
|
||||
|
@ -78,7 +94,8 @@
|
|||
</activation>
|
||||
<properties>
|
||||
<eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site>
|
||||
<platform-version>3.7</platform-version>
|
||||
<platform-version>[3.7,3.8)</platform-version>
|
||||
<sdk-version>3.7</sdk-version>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/updates/indigo/</cdt-site>
|
||||
<cdt-test-site>http://download.eclipse.org/tools/cdt/updates/indigo/</cdt-test-site>
|
||||
</properties>
|
||||
|
@ -109,6 +126,40 @@
|
|||
</repository>
|
||||
</repositories>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>platform-juno</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
<property>
|
||||
<name>platform-version-name</name>
|
||||
<value>juno</value>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<eclipse-site>http://download.eclipse.org/releases/staging</eclipse-site>
|
||||
<platform-version>[4.2,)</platform-version>
|
||||
<sdk-version>4.2</sdk-version>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/builds/juno/milestones/M6</cdt-site>
|
||||
<cdt-test-site>http://download.eclipse.org/tools/cdt/updates/indigo/</cdt-test-site>
|
||||
</properties>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>juno</id>
|
||||
<layout>p2</layout>
|
||||
<url>${eclipse-site}</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>cdt</id>
|
||||
<layout>p2</layout>
|
||||
<url>${cdt-site}</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>cdttest</id>
|
||||
<layout>p2</layout>
|
||||
<url>${cdt-test-site}</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
</profile>
|
||||
</profiles>
|
||||
<modules>
|
||||
<module>org.eclipse.tm.rse/doc/org.eclipse.dstore.doc.isv</module>
|
||||
|
@ -216,7 +267,7 @@
|
|||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-maven-plugin</artifactId>
|
||||
<version>0.14.0</version>
|
||||
<version>${tycho-version}</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
@ -351,6 +402,7 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
<product>org.eclipse.sdk.ide</product>
|
||||
<argLine>-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=256m</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
|
Loading…
Add table
Reference in a new issue