diff options
author | Shigeru Chiba <chibash@users.noreply.github.com> | 2023-12-21 23:57:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 23:57:01 +0900 |
commit | fe634f3aad12e48f57d116ef8b8b3e8df8b9e261 (patch) | |
tree | c05ef7e41911f3b605ae89421553b78858f36554 | |
parent | 8b1296ea6400b6f780532f3c48961e9f5357e78f (diff) | |
parent | dc5aefedf1fa429f7101f56fa7e9485b5d3dc2c4 (diff) | |
download | javassist-fe634f3aad12e48f57d116ef8b8b3e8df8b9e261.tar.gz javassist-fe634f3aad12e48f57d116ef8b8b3e8df8b9e261.zip |
Merge pull request #473 from shifujun/fix_bytecode_version
Fix bytecode compatible back to 52(JDK8)
-rw-r--r-- | pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> |