添加 maven-compiler-plugin 与编译参数 -release, 解决 ByteBuffer 方法在旧版本jdk中找不到的问题

This commit is contained in:
hunan 2022-08-02 10:37:00 +08:00
parent f6d5c648b2
commit 74389a5dc0
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<target>1.8</target>
<release>8</release>
</configuration>
</plugin>