Commit b4528bd5 by 刘鑫

fix: 设置编译jdk版本,避免编译charset转换因为jdk版本引起的错误

1 parent 4e8537f3
Showing with 9 additions and 0 deletions
......@@ -62,6 +62,14 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!