Riza Suminto has posted comments on this change. ( http://gerrit.cloudera.org:8080/23432 )
Change subject: IMPALA-14446: Clean up pom.xml ...................................................................... Patch Set 2: (1 comment) http://gerrit.cloudera.org:8080/#/c/23432/2/java/pom.xml File java/pom.xml: http://gerrit.cloudera.org:8080/#/c/23432/2/java/pom.xml@524 PS2, Line 524: <plugin> : <groupId>org.apache.maven.plugins</groupId> : <artifactId>maven-compiler-plugin</artifactId> : <version>3.14.0</version> : </plugin> Looks like this require some tweak to allow using sun.misc.Unsafe <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <compilerArgs> <!-- Replace 'my.module' with your project's module name --> <arg>--add-exports</arg> <arg>java.base/sun.misc=my.module</arg> </compilerArgs> </configuration> </plugin> -- To view, visit http://gerrit.cloudera.org:8080/23432 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: If96649840e23036b4a73ee23e8d12516497994f0 Gerrit-Change-Number: 23432 Gerrit-PatchSet: 2 Gerrit-Owner: Michael Smith <michael.sm...@cloudera.com> Gerrit-Reviewer: Csaba Ringhofer <csringho...@cloudera.com> Gerrit-Reviewer: Impala Public Jenkins <impala-public-jenk...@cloudera.com> Gerrit-Reviewer: Michael Smith <michael.sm...@cloudera.com> Gerrit-Reviewer: Riza Suminto <riza.sumi...@cloudera.com> Gerrit-Comment-Date: Tue, 16 Sep 2025 22:00:51 +0000 Gerrit-HasComments: Yes