aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.build/pom.xml
diff options
context:
space:
mode:
authorEvgeny Mandrikov <Godin@users.noreply.github.com>2018-08-14 13:17:18 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2018-08-14 13:17:18 +0200
commit29a770dd29cd5ed4a7ad7896c33eda670b2750f2 (patch)
treea21d01e989b8ad134969e14335676578f8ad2176 /org.jacoco.build/pom.xml
parentf2c79fe18060e5cdaf6ad4f921f3ee374f7f0b69 (diff)
downloadjacoco-29a770dd29cd5ed4a7ad7896c33eda670b2750f2.tar.gz
Build with JDK 12 EA in Travis (#732)
Diffstat (limited to 'org.jacoco.build/pom.xml')
-rw-r--r--org.jacoco.build/pom.xml16
1 files changed, 13 insertions, 3 deletions
diff --git a/org.jacoco.build/pom.xml b/org.jacoco.build/pom.xml
index f23b9b09..dc34e9de 100644
--- a/org.jacoco.build/pom.xml
+++ b/org.jacoco.build/pom.xml
@@ -677,17 +677,27 @@
</build>
<profiles>
+ <!-- http://openjdk.java.net/jeps/182 -->
<profile>
<id>maven-jdk9</id>
<activation>
- <jdk>[9,)</jdk>
+ <jdk>[9,12)</jdk>
</activation>
<properties>
- <!-- http://openjdk.java.net/jeps/182 -->
<bytecode.version>6</bytecode.version>
</properties>
</profile>
+ <profile>
+ <id>maven-jdk12</id>
+ <activation>
+ <jdk>[12,)</jdk>
+ </activation>
+ <properties>
+ <bytecode.version>7</bytecode.version>
+ </properties>
+ </profile>
+
<!-- This profile enables use of JDK from Maven Toolchains -->
<profile>
<id>integration-tests</id>
@@ -899,7 +909,7 @@
</property>
</activation>
<properties>
- <bytecode.version>6</bytecode.version>
+ <bytecode.version>7</bytecode.version>
</properties>
</profile>