Skip to content

Instantly share code, notes, and snippets.

@typelogic
Created November 24, 2020 12:39
Show Gist options
  • Save typelogic/7af1e53232cfe6305051f29b4b66f9c3 to your computer and use it in GitHub Desktop.
Save typelogic/7af1e53232cfe6305051f29b4b66f9c3 to your computer and use it in GitHub Desktop.
switch java version in pom.xml
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
or
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment