Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2018-07-26 17:10:48 +0000
committerStephan Herrmann2018-07-26 17:13:38 +0000
commitd0fe062fe77750c82ecccd8ef3b812c75adeef2e (patch)
tree826a18b73e6a52e6a0b3a4738049584c5070c407 /org.eclipse.jdt.core.tests.model/pom.xml
parentd97e1b8ae45bb1ce31aca58f9fff321bd2c640fa (diff)
downloadorg.eclipse.objectteams-d0fe062fe77750c82ecccd8ef3b812c75adeef2e.tar.gz
org.eclipse.objectteams-d0fe062fe77750c82ecccd8ef3b812c75adeef2e.tar.xz
org.eclipse.objectteams-d0fe062fe77750c82ecccd8ef3b812c75adeef2e.zip
Update jdt.core to I20180725-2000 (towards 2018-09 M2)
Diffstat (limited to 'org.eclipse.jdt.core.tests.model/pom.xml')
-rw-r--r--org.eclipse.jdt.core.tests.model/pom.xml35
1 files changed, 33 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core.tests.model/pom.xml b/org.eclipse.jdt.core.tests.model/pom.xml
index 284288329..fb3ec4c04 100644
--- a/org.eclipse.jdt.core.tests.model/pom.xml
+++ b/org.eclipse.jdt.core.tests.model/pom.xml
@@ -15,12 +15,12 @@
<parent>
<artifactId>tests-pom</artifactId>
<groupId>eclipse.jdt.core</groupId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
<relativePath>../tests-pom/</relativePath>
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.core.tests.model</artifactId>
- <version>3.10.500-SNAPSHOT</version>
+ <version>3.10.600-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
@@ -77,6 +77,37 @@
<tycho.surefire.argLine>--add-modules ALL-SYSTEM</tycho.surefire.argLine>
</properties>
</profile>
+ <profile>
+ <id>test-on-javase-10</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-10</id>
+ </jdk>
+ </toolchains>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <properties>
+ <!-- Overridden in https://ci.eclipse.org/jdt/job/eclipse.jdt.core-run.javac-10/configure -->
+ <tycho.surefire.argLine>--add-modules ALL-SYSTEM -Dcompliance=1.4,1.7,1.8,10</tycho.surefire.argLine>
+ </properties>
+ </profile>
</profiles>
</project>

Back to the top