aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJCgH4164838Gh792C124B5 <43964333+JCgH4164838Gh792C124B5@users.noreply.github.com>2018-11-30 00:54:00 -0500
committerJCgH4164838Gh792C124B5 <43964333+JCgH4164838Gh792C124B5@users.noreply.github.com>2018-11-30 00:54:00 -0500
commit02b47cd58fb913e6d0f1be95d09f54c5bcf36464 (patch)
tree9415f30f1421f8e3dfba778edb87ebeab6c0a169
parentfa3dd56b836208944683de8a50bb36e96b5e001e (diff)
downloadjavassist-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.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index c1fc343c..6d42cf18 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>