Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2014-02-10 10:31:47 +0000
committerJayaprakash Arthanareeswaran2014-02-10 10:34:00 +0000
commitaadb2a658581a97e9459691d70634be53e0b7594 (patch)
tree1d389016aa8ed73095a818f4d24eb7a33cb8713a
parentd52fafa2b74fd3a16a51c4b663acab3eb01680b9 (diff)
downloadeclipse.jdt.core-aadb2a658581a97e9459691d70634be53e0b7594.tar.gz
eclipse.jdt.core-aadb2a658581a97e9459691d70634be53e0b7594.tar.xz
eclipse.jdt.core-aadb2a658581a97e9459691d70634be53e0b7594.zip
Bug 426902 - Remember to remove "SYSTEM" override, once JavaSE-1.8 is
supported
-rw-r--r--org.eclipse.jdt.annotation/pom.xml26
1 files changed, 1 insertions, 25 deletions
diff --git a/org.eclipse.jdt.annotation/pom.xml b/org.eclipse.jdt.annotation/pom.xml
index da9729ceda..5d75ecd7b3 100644
--- a/org.eclipse.jdt.annotation/pom.xml
+++ b/org.eclipse.jdt.annotation/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -20,28 +20,4 @@
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>2.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-compiler-plugin</artifactId>
- <version>${tycho.version}</version>
- <configuration>
- <!--
- In most cases, we want to use BREE, but due to current
- builder limitations, we can not specify
- JavaSE1.8 for BREE. Therefore to get this one bundle to
- compile correctly, and use BREE elsewhere, we override
- the bree-libs profile and a) specify SYSTEM here, and
- b) make the strong assumption that we are running the
- build using Java 1.8.
- -->
- <useJDK>SYSTEM</useJDK>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
-
</project>

Back to the top