Skip to content

Commit

Permalink
Bump to Apache parent POM 32 (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fokko authored Jul 8, 2024
1 parent ed66e87 commit 81c22ff
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 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 @@ -131,15 +131,6 @@
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
<plugin>
<!-- 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>
<artifactId>maven-shade-plugin</artifactId>
Expand Down Expand Up @@ -241,6 +232,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 81c22ff

Please sign in to comment.