Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2017-07-06 11:43:33 +0000
committerJay Arthanareeswaran2017-09-18 13:12:45 +0000
commitc798229d351d6daa2232cff6c15750336659223e (patch)
tree24fcc71a360db7f1b71ee743ab823ab51c1d891d /org.eclipse.jdt.compiler.tool/pom.xml
parent062ac5d7a6bf9c9d3013dabfd6e3cb8633f7baec (diff)
downloadeclipse.jdt.core-c798229d351d6daa2232cff6c15750336659223e.tar.gz
eclipse.jdt.core-c798229d351d6daa2232cff6c15750336659223e.tar.xz
eclipse.jdt.core-c798229d351d6daa2232cff6c15750336659223e.zip
Bug 477291: [1.9] Support JRE 9 in JSR199 implementation
Change-Id: Idfbcd6c2e40fbbc1a325dbe43950284404642fc8 Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.compiler.tool/pom.xml')
-rw-r--r--org.eclipse.jdt.compiler.tool/pom.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/org.eclipse.jdt.compiler.tool/pom.xml b/org.eclipse.jdt.compiler.tool/pom.xml
index 5eb9c00781..b5e0f07ded 100644
--- a/org.eclipse.jdt.compiler.tool/pom.xml
+++ b/org.eclipse.jdt.compiler.tool/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2016 Eclipse Foundation and others.
+ Copyright (c) 2012, 2017 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
@@ -23,6 +23,25 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <configuration>
+ <compilerArgs>
+ <args>-endorseddirs</args>
+ <args>${basedir}/lib</args>
+ </compilerArgs>
+ <!-- Use this form for Tycho 23 or greater -->
+ <log>xml</log>
+ <logDirectory>${project.build.directory}/compilelogs</logDirectory>
+ <showWarnings>true</showWarnings>
+ <excludeResources>
+ <exclude>**/package.html</exclude>
+ </excludeResources>
+ <useProjectSettings>false</useProjectSettings>
+ </configuration>
+ </plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<configuration>

Back to the top