]> source.dussan.org Git - javassist.git/commitdiff
Re-enable JDK7 runtime compatibility for Javassist 3.x (until source changes preclude... 230/head
authorJCgH4164838Gh792C124B5 <43964333+JCgH4164838Gh792C124B5@users.noreply.github.com>
Fri, 30 Nov 2018 05:54:00 +0000 (00:54 -0500)
committerJCgH4164838Gh792C124B5 <43964333+JCgH4164838Gh792C124B5@users.noreply.github.com>
Fri, 30 Nov 2018 05:54:00 +0000 (00:54 -0500)
pom.xml changes:
- lower compile source/target to 1.7 (from 1.8, introduced with Javassist 3.24.0)

pom.xml

diff --git a/pom.xml b/pom.xml
index c1fc343c6074719ec99809274fe85e9f4b0d23f2..6d42cf18c1833bf2fa2a355adf439d6f4b276f59 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <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>