Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2019-09-25 09:12:38 +0000
committerManoj Palat2019-09-25 09:12:38 +0000
commit0ae4e8369a5ea4201be87138c0f45f72276962ee (patch)
tree3cf3a710527121454505df011a0454d0a9715e93 /org.eclipse.jdt.tests.latestBREE
parentd698c9585b5705d5d5c4944bb938bdba566fefdc (diff)
downloadeclipse.jdt.core-0ae4e8369a5ea4201be87138c0f45f72276962ee.tar.gz
eclipse.jdt.core-0ae4e8369a5ea4201be87138c0f45f72276962ee.tar.xz
eclipse.jdt.core-0ae4e8369a5ea4201be87138c0f45f72276962ee.zip
Bug 551348 - [14] Create Java 14 version and supporting code in tests
Change-Id: Ida6c7b61e6438be2641e4d411c93b9fbae3763f5 Signed-off-by: Manoj Palat <manpalat@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.tests.latestBREE')
-rw-r--r--org.eclipse.jdt.tests.latestBREE/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/org.eclipse.jdt.tests.latestBREE/pom.xml b/org.eclipse.jdt.tests.latestBREE/pom.xml
index fbd00ad965..097d87157c 100644
--- a/org.eclipse.jdt.tests.latestBREE/pom.xml
+++ b/org.eclipse.jdt.tests.latestBREE/pom.xml
@@ -73,6 +73,36 @@
<tycho.surefire.argLine>--add-modules ALL-SYSTEM -Dcompliance=1.4,1.7,1.8,13</tycho.surefire.argLine>
</properties>
</profile>
+ <profile>
+ <id>test-on-javase-14</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-toolchains-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>toolchain</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <toolchains>
+ <jdk>
+ <id>JavaSE-14</id>
+ </jdk>
+ </toolchains>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <properties>
+ <tycho.surefire.argLine>--add-modules ALL-SYSTEM -Dcompliance=1.4,1.7,1.8,13,14</tycho.surefire.argLine>
+ </properties>
+ </profile>
</profiles>
</project>

Back to the top