Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2015-05-08 22:20:57 +0000
committerMatthias Sohn2015-05-08 22:20:57 +0000
commit1dfcabd2ec0f8e981de66c8a63f0fe8f98f59e28 (patch)
treecfcf72f6637aeb2931278f339379a6fe71ad8aa4 /pom.xml
parent1f462f636c6934cd0cdd423ff750a3dff03865da (diff)
downloadegit-github-1dfcabd2ec0f8e981de66c8a63f0fe8f98f59e28.tar.gz
egit-github-1dfcabd2ec0f8e981de66c8a63f0fe8f98f59e28.tar.xz
egit-github-1dfcabd2ec0f8e981de66c8a63f0fe8f98f59e28.zip
Update build to use Mars based target platform
- add Maven profiles for Luna and Mars - remove Mac x86 OS platform which isn't supported anymore - update JUnit to 4.11 - use Mars Orbit drop S20150202203538 Change-Id: Ia3589421ac03fdbc33c57af18bbc8564958d45f9 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml35
1 files changed, 26 insertions, 9 deletions
diff --git a/pom.xml b/pom.xml
index f903a798..63d3b5dc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,10 +43,10 @@
<tycho-version>0.22.0</tycho-version>
<tycho-extras-version>${tycho-version}</tycho-extras-version>
<egit-site>file:/${basedir}/../../egit/org.eclipse.egit.repository/target/repository</egit-site>
- <platform-version-name>kepler</platform-version-name>
+ <platform-version-name>mars</platform-version-name>
<mylyn-site>http://download.eclipse.org/mylyn/releases/3.7</mylyn-site>
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
- <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20130827064939/repository/</orbit-site>
+ <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/S20150202203538/repository/</orbit-site>
<download-publish-path>/home/data/httpd/download.eclipse.org/egit/github/updates-nightly</download-publish-path>
</properties>
@@ -159,11 +159,6 @@
<environment>
<os>macosx</os>
<ws>cocoa</ws>
- <arch>x86</arch>
- </environment>
- <environment>
- <os>macosx</os>
- <ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
@@ -257,7 +252,6 @@
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/juno</eclipse-site>
- <platform-version>[3.8,3.9)</platform-version>
</properties>
</profile>
<profile>
@@ -270,7 +264,30 @@
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/kepler</eclipse-site>
- <platform-version>[3.9,4.0)</platform-version>
+ </properties>
+ </profile>
+ <profile>
+ <id>platform-luna</id>
+ <activation>
+ <property>
+ <name>platform-version-name</name>
+ <value>luna</value>
+ </property>
+ </activation>
+ <properties>
+ <eclipse-site>http://download.eclipse.org/releases/luna</eclipse-site>
+ </properties>
+ </profile>
+ <profile>
+ <id>platform-mars</id>
+ <activation>
+ <property>
+ <name>platform-version-name</name>
+ <value>mars</value>
+ </property>
+ </activation>
+ <properties>
+ <eclipse-site>http://download.eclipse.org/releases/mars</eclipse-site>
</properties>
</profile>
<profile>

Back to the top