Skip to content

Commit

Permalink
Merge pull request #473 from shifujun/fix_bytecode_version
Browse files Browse the repository at this point in the history
Fix bytecode compatible back to 52(JDK8)
  • Loading branch information
chibash committed Dec 21, 2023
2 parents 8b1296e + dc5aefe commit fe634f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>11</source>
<target>11</target>
<source>1.8</source>
<target>1.8</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>
Expand Down

0 comments on commit fe634f3

Please sign in to comment.