Skip to content

Commit

Permalink
extend the java9+ profile to recent jdks
Browse files Browse the repository at this point in the history
  • Loading branch information
mareknovotny committed Sep 14, 2022
1 parent 564b850 commit bb06a78
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -480,24 +480,26 @@
<profile>
<id>java9+</id>
<activation>
<jdk>[9, 11]</jdk>
<jdk>[9,)</jdk>
</activation>
<properties>
<maven.compiler.release>8</maven.compiler.release>
</properties>
<build>
<plugins>
<plugin>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- <version>3.10.1</version> -->
<version>3.10.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
</plugins>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
Expand Down

0 comments on commit bb06a78

Please sign in to comment.