Skip to content

Commit

Permalink
Bump to Apache parent POM 32
Browse files Browse the repository at this point in the history
  • Loading branch information
Fokko committed May 21, 2024
1 parent 079a2df commit 953a815
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>31</version>
<version>32</version>
</parent>

<groupId>org.apache.parquet</groupId>
Expand Down Expand Up @@ -135,10 +135,6 @@
<!-- Override source and target from the ASF parent -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -241,6 +237,16 @@
</dependencies>

<profiles>
<profile>
<id>jdk9+</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<properties>
<!-- release takes precedence over source/target if java version is 9 or higher -->
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
<profile>
<activation>
<os>
Expand Down

0 comments on commit 953a815

Please sign in to comment.