Also update compiler version

This commit is contained in:
md_5 2023-04-02 15:01:50 +10:00
parent 08e305f5b3
commit be8682aa82
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -451,16 +451,18 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version> <version>3.11.0</version>
<configuration> <configuration>
<!-- we use the Eclipse compiler as it doesn't need a JDK --> <!-- we use the Eclipse compiler as it doesn't need a JDK -->
<compilerId>eclipse</compilerId> <compilerId>eclipse</compilerId>
<!-- default changed with version 3.11.0 -->
<showWarnings>false</showWarnings>
</configuration> </configuration>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.codehaus.plexus</groupId> <groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId> <artifactId>plexus-compiler-eclipse</artifactId>
<version>2.12.0</version> <version>2.13.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
</plugin> </plugin>