aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShigeru Chiba <chibash@users.noreply.github.com>2018-11-30 15:38:37 +0900
committerGitHub <noreply@github.com>2018-11-30 15:38:37 +0900
commita6be48a80fd7afe0c982e4eea9523a034581454b (patch)
tree9415f30f1421f8e3dfba778edb87ebeab6c0a169
parentfa3dd56b836208944683de8a50bb36e96b5e001e (diff)
parent02b47cd58fb913e6d0f1be95d09f54c5bcf36464 (diff)
downloadjavassist-a6be48a80fd7afe0c982e4eea9523a034581454b.tar.gz
javassist-a6be48a80fd7afe0c982e4eea9523a034581454b.zip
Merge pull request #230 from JCgH4164838Gh792C124B5/localJavassistBranch
Re-enable JDK7 runtime compatibility for Javassist 3.x
-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>