diff options
author | JCgH4164838Gh792C124B5 <43964333+JCgH4164838Gh792C124B5@users.noreply.github.com> | 2018-11-30 00:54:00 -0500 |
---|---|---|
committer | JCgH4164838Gh792C124B5 <43964333+JCgH4164838Gh792C124B5@users.noreply.github.com> | 2018-11-30 00:54:00 -0500 |
commit | 02b47cd58fb913e6d0f1be95d09f54c5bcf36464 (patch) | |
tree | 9415f30f1421f8e3dfba778edb87ebeab6c0a169 | |
parent | fa3dd56b836208944683de8a50bb36e96b5e001e (diff) | |
download | javassist-02b47cd58fb913e6d0f1be95d09f54c5bcf36464.tar.gz javassist-02b47cd58fb913e6d0f1be95d09f54c5bcf36464.zip |
Re-enable JDK7 runtime compatibility for Javassist 3.x (until source changes preclude it).
pom.xml changes:
- lower compile source/target to 1.7 (from 1.8, introduced with Javassist 3.24.0)
-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>1.8</source> - <target>1.8</target> + <source>1.7</source> + <target>1.7</target> <testSource>11</testSource> <testTarget>11</testTarget> <testCompilerArgument>-parameters</testCompilerArgument> |