Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2013-06-13 13:15:02 +0000
committerSteffen Pingel2013-06-14 07:11:38 +0000
commit7f4aeb994e6e54d7e83ba242dc6fcc344cd2119b (patch)
treecb863bfdc697ab7234b1050b73a094ea8311d3f1 /org.eclipse.mylyn-parent/pom.xml
parentdbb2a7c0c2cf422affc74a1c6f8acac17eca7088 (diff)
downloadorg.eclipse.mylyn-7f4aeb994e6e54d7e83ba242dc6fcc344cd2119b.tar.gz
org.eclipse.mylyn-7f4aeb994e6e54d7e83ba242dc6fcc344cd2119b.tar.xz
org.eclipse.mylyn-7f4aeb994e6e54d7e83ba242dc6fcc344cd2119b.zip
410655: add JDT @NonNull annotation bundle to targets
* fix detection of Mac OS specific profile Change-Id: Iad4737b4ce71d6d29c20823ec8fb0f3c58f99bef Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=410655
Diffstat (limited to 'org.eclipse.mylyn-parent/pom.xml')
-rw-r--r--org.eclipse.mylyn-parent/pom.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/org.eclipse.mylyn-parent/pom.xml b/org.eclipse.mylyn-parent/pom.xml
index 099c3477..d194b8aa 100644
--- a/org.eclipse.mylyn-parent/pom.xml
+++ b/org.eclipse.mylyn-parent/pom.xml
@@ -75,6 +75,7 @@
<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/R20130517111416/repository/</orbit-repository-url>
+ <jdt-annotation-repository-url>http://download.eclipse.org/mylyn/snapshots/jdt-annotation/</jdt-annotation-repository-url>
<mylyn-repository-url>http://download.eclipse.org/mylyn/snapshots/nightly/</mylyn-repository-url>
<mylyn-builds-repository-url>http://download.eclipse.org/mylyn/snapshots/nightly/builds/</mylyn-builds-repository-url>
<mylyn-commons-repository-url>http://download.eclipse.org/mylyn/snapshots/nightly/commons/</mylyn-commons-repository-url>
@@ -300,6 +301,11 @@
<layout>p2</layout>
<url>${orbit-repository-url}</url>
</repository>
+ <repository>
+ <id>eclipse-jdt-annotation</id>
+ <layout>p2</layout>
+ <url>${jdt-annotation-repository-url}</url>
+ </repository>
<!--
<repository>
<id>eclipse-mylyn</id>
@@ -471,8 +477,8 @@
<id>osx</id>
<activation>
<property>
- <name>java.vendor.url</name>
- <value>http://www.apple.com/</value>
+ <name>os.name</name>
+ <value>Mac OS X</value>
</property>
</activation>
<properties>

Back to the top