davisusanibar commented on issue #40087: URL: https://github.com/apache/arrow/issues/40087#issuecomment-1952851835
There may not be an option to continue using IntelliJ JPS build for our Java modules project. IntelliJ offers the following options for compiling Java projects: 1. Compile using maven commands by "View --> Tool Window --> Maven --> Run maven build" : OK 2. Compile using IntelliJ own JPS compiler by "Build --> Build Project" : NOK ( modules are not supported in -source 8) 3. Compile using terminal "View --> Tool Window --> Terminal --> Run maven build" : OK Option (1) and (3) work without errors because these options **honors** maven/pom.xml definitions. Option (2) uses their **own native compiler**. IntelliJ IDEA compiles code using a tool called JPS (JetBrains Project System). JPS is designed to speed up compiling by performing incremental and background compilations. To continue using option (2) we need to "**Delegate build and run actions to Maven**" using [these steps](https://www.jetbrains.com/help/idea/delegate-build-and-run-actions-to-maven.html#delegate_to_maven).  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
