Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn-parent')
-rw-r--r--org.eclipse.mylyn-parent/pom.xml60
1 files changed, 51 insertions, 9 deletions
diff --git a/org.eclipse.mylyn-parent/pom.xml b/org.eclipse.mylyn-parent/pom.xml
index 4e6f7814..01d02b40 100644
--- a/org.eclipse.mylyn-parent/pom.xml
+++ b/org.eclipse.mylyn-parent/pom.xml
@@ -24,8 +24,8 @@
</prerequisites>
<properties>
- <tycho-version>0.21.0</tycho-version>
- <tycho-extras-version>0.21.0</tycho-extras-version>
+ <tycho-version>0.20.0</tycho-version>
+ <tycho-extras-version>0.20.0</tycho-extras-version>
<mylyn-test-append></mylyn-test-append>
@@ -69,8 +69,9 @@
<egit-repository-url>http://download.eclipse.org/egit/updates-1.3/</egit-repository-url>
<swtbot-repository-url>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site/</swtbot-repository-url>
- <alt-target-version>4.5</alt-target-version>
- <alt-platform-repository-url>http://download.eclipse.org/releases/mars/</alt-platform-repository-url>
+ <!-- alternative target for components that don't build against galileo -->
+ <alt-target-version>3.7</alt-target-version>
+ <alt-platform-repository-url>http://download.eclipse.org/releases/indigo/201202240900/</alt-platform-repository-url>
<orbit-repository-url>http://download.eclipse.org/tools/orbit/downloads/drops/R20140525021250/repository/</orbit-repository-url>
<jdt-annotation-repository-url>http://download.eclipse.org/mylyn/snapshots/jdt-annotation/</jdt-annotation-repository-url>
@@ -306,8 +307,49 @@
</activation>
<!-- Properties get overridden if a specific target profile is activated. -->
<properties>
- <target-version>4.5</target-version>
- <platform-repository-url>http://download.eclipse.org/releases/mars/</platform-repository-url>
+ <target-version>3.6</target-version>
+ <platform-repository-url>http://download.eclipse.org/releases/helios/201102250900/</platform-repository-url>
+ </properties>
+ </profile>
+ <profile>
+ <id>helios</id>
+ <activation>
+ <property>
+ <name>target-profile</name>
+ <value>helios</value>
+ </property>
+ </activation>
+ <properties>
+ <target-version>3.6</target-version>
+ <platform-repository-url>http://download.eclipse.org/releases/helios/201102250900/</platform-repository-url>
+ </properties>
+ </profile>
+ <profile>
+ <id>indigo</id>
+ <activation>
+ <property>
+ <name>target-profile</name>
+ <value>indigo</value>
+ </property>
+ </activation>
+ <properties>
+ <target-version>3.7</target-version>
+ <platform-repository-url>http://download.eclipse.org/releases/indigo/201202240900/</platform-repository-url>
+ </properties>
+ </profile>
+ <profile>
+ <id>e3.8</id>
+ <activation>
+ <property>
+ <name>target-profile</name>
+ <value>e3.8</value>
+ </property>
+ </activation>
+ <properties>
+ <target-version>3.8</target-version>
+ <platform-repository-url>http://download.eclipse.org/releases/juno/201303010900/</platform-repository-url>
+ <alt-target-version>3.8</alt-target-version>
+ <alt-platform-repository-url>http://download.eclipse.org/releases/juno/201303010900/</alt-platform-repository-url>
</properties>
</profile>
<profile>
@@ -597,8 +639,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <source>1.7</source>
+ <target>1.7</target>
</configuration>
</plugin>
<plugin>
@@ -662,7 +704,7 @@
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
- <targetJdk>1.8</targetJdk>
+ <targetJdk>1.7</targetJdk>
<format>xml</format>
<failOnViolation>false</failOnViolation>
<skip>${analysis.skip}</skip>

Back to the top