Skip to content

Commit

Permalink
Merge pull request #68 from Sanne/FixRangeFormat
Browse files Browse the repository at this point in the history
Fix the range format used to activate profiles based on JDK versions
  • Loading branch information
dmlloyd authored Sep 18, 2019
2 parents 9a05d4e + 3e46e5c commit d832071
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@
<file>
<exists>${basedir}/build-release-8</exists>
</file>
<jdk>[9,</jdk>
<jdk>[9,)</jdk>
</activation>
<build>
<plugins>
Expand Down Expand Up @@ -903,7 +903,7 @@
<file>
<exists>${basedir}/build-include-jdk-misc</exists>
</file>
<jdk>[9,</jdk>
<jdk>[9,)</jdk>
</activation>
<build>
<plugins>
Expand Down Expand Up @@ -954,7 +954,7 @@
<profile>
<id>java8-test</id>
<activation>
<jdk>[9,</jdk>
<jdk>[9,)</jdk>
<property>
<name>java8.home</name>
</property>
Expand Down Expand Up @@ -991,7 +991,7 @@
<profile>
<id>java9-mr-build</id>
<activation>
<jdk>[9,</jdk>
<jdk>[9,)</jdk>
<file>
<exists>${basedir}/src/main/java9</exists>
</file>
Expand Down Expand Up @@ -1040,7 +1040,7 @@
<profile>
<id>java9-test</id>
<activation>
<jdk>[10,</jdk>
<jdk>[10,)</jdk>
<property>
<name>java9.home</name>
</property>
Expand Down Expand Up @@ -1080,7 +1080,7 @@
<profile>
<id>java10-mr-build</id>
<activation>
<jdk>[10,</jdk>
<jdk>[10,)</jdk>
<file>
<exists>${basedir}/src/main/java10</exists>
</file>
Expand Down Expand Up @@ -1132,7 +1132,7 @@
<profile>
<id>java10-test</id>
<activation>
<jdk>[11,</jdk>
<jdk>[11,)</jdk>
<property>
<name>java10.home</name>
</property>
Expand Down Expand Up @@ -1175,7 +1175,7 @@
<profile>
<id>java11-mr-build</id>
<activation>
<jdk>[11,</jdk>
<jdk>[11,)</jdk>
<file>
<exists>${basedir}/src/main/java11</exists>
</file>
Expand Down Expand Up @@ -1230,7 +1230,7 @@
<profile>
<id>java11-test</id>
<activation>
<jdk>[12,</jdk>
<jdk>[12,)</jdk>
<property>
<name>java11.home</name>
</property>
Expand Down Expand Up @@ -1276,7 +1276,7 @@
<profile>
<id>java12-mr-build</id>
<activation>
<jdk>[12,</jdk>
<jdk>[12,)</jdk>
<file>
<exists>${basedir}/src/main/java12</exists>
</file>
Expand Down Expand Up @@ -1334,7 +1334,7 @@
<profile>
<id>java12-test</id>
<activation>
<jdk>[13,</jdk>
<jdk>[13,)</jdk>
<property>
<name>java12.home</name>
</property>
Expand Down Expand Up @@ -1383,7 +1383,7 @@
<profile>
<id>java13-mr-build</id>
<activation>
<jdk>[13,</jdk>
<jdk>[13,)</jdk>
<file>
<exists>${basedir}/src/main/java13</exists>
</file>
Expand Down

0 comments on commit d832071

Please sign in to comment.