Skip to content

Commit

Permalink
Make the POM work with java 17.0.1+
Browse files Browse the repository at this point in the history
Change the range for java-17 profile activation to `[17,)`.
According to https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html this is the way to do it and the current way `[17,*)` makes the builds fail

fixes vert-x3#84
  • Loading branch information
michalszynkiewicz authored Oct 28, 2021
1 parent ec64227 commit 1cd96e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<profile>
<id>java-17</id>
<activation>
<jdk>[17,*)</jdk>
<jdk>[17,)</jdk>
</activation>
<properties>
<maven.test.skip>true</maven.test.skip>
Expand Down

0 comments on commit 1cd96e5

Please sign in to comment.