Skip to content

Commit

Permalink
Fix bytecode compatible back to 52(JDK8)
Browse files Browse the repository at this point in the history
IDEA only need compiler.xml set <option name="USE_RELEASE_OPTION" value="false" />.

fix jboss-javassist#470
  • Loading branch information
shifujun committed Dec 18, 2023
1 parent 8b1296e commit d7912e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
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 d7912e0

Please sign in to comment.