Skip to content

Commit

Permalink
Update maven-compiler-plugin to 3.11.0 for useModulePath flag
Browse files Browse the repository at this point in the history
Change the project to not use the module path for most compilation
since most compilation will target JDK8.
  • Loading branch information
jduo committed Nov 29, 2023
1 parent bbdeffa commit baeedc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
<errorprone.javac.version>9+181-r4173-1</errorprone.javac.version>
<error_prone_core.version>2.22.0</error_prone_core.version>
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<mockito.core.version>5.5.0</mockito.core.version>
<mockito.inline.version>5.2.0</mockito.inline.version>
</properties>
Expand Down Expand Up @@ -401,6 +401,7 @@
<version>${maven-compiler-plugin.version}</version>
<configuration>
<excludes>**/module-info.java</excludes>
<useModulePath>false</useModulePath>
<annotationProcessorPaths>
<path>
<groupId>org.immutables</groupId>
Expand Down

0 comments on commit baeedc3

Please sign in to comment.