Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2017-12-11 23:00:51 +0000
committerStephan Herrmann2017-12-14 15:06:46 +0000
commit8a62e0458f1d63fe83509f5088a26e4b9675ea6f (patch)
tree9c8934ab299f96164d56363359f0b73994a6a94c /org.eclipse.jdt.core.tests.model/pom.xml
parenteb56c0ff84220d1e3d1f2fcde8e841e499ae26e6 (diff)
downloadeclipse.jdt.core-8a62e0458f1d63fe83509f5088a26e4b9675ea6f.tar.gz
eclipse.jdt.core-8a62e0458f1d63fe83509f5088a26e4b9675ea6f.tar.xz
eclipse.jdt.core-8a62e0458f1d63fe83509f5088a26e4b9675ea6f.zip
Bug 522554 - [9] Need --add-reads etc. classpath attributes
- improve implementation - enable JDK 9 for model tests - adjust test to jdk-{9,9.0.1} - add dependency on o.e.j.launching to support StandardVMType in tests - order stability for ModuleBuilderTests.testBug528467b() Change-Id: I98e3ee39adb00a6c4d0db11b472594f0f2078a76
Diffstat (limited to 'org.eclipse.jdt.core.tests.model/pom.xml')
-rw-r--r--org.eclipse.jdt.core.tests.model/pom.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core.tests.model/pom.xml b/org.eclipse.jdt.core.tests.model/pom.xml
index 53a463b8eb..8f86927e69 100644
--- a/org.eclipse.jdt.core.tests.model/pom.xml
+++ b/org.eclipse.jdt.core.tests.model/pom.xml
@@ -45,4 +45,35 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>test-on-javase-9</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-9</id>
+ </jdk>
+ </toolchains>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>

Back to the top