aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorRich Bolen <rich.bolen@icg360.com>2019-08-20 10:52:01 -0400
committerRich Bolen <rich.bolen@icg360.com>2019-08-20 10:52:01 -0400
commitc08c21ebd2b636d6bc9e3543aaf980f9e4733a04 (patch)
tree1263c43bc116067b4968f3cc8eeedf26fca99045 /pom.xml
parent8f4788e0907278cec2a094af179451824651a515 (diff)
downloadjavassist-c08c21ebd2b636d6bc9e3543aaf980f9e4733a04.tar.gz
javassist-c08c21ebd2b636d6bc9e3543aaf980f9e4733a04.zip
Add support for the new Dynamic constant (17) created in java 11
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index c3bd1990..fc8e2fdf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
- <version>3.25.0-GA</version>
+ <version>3.25.1-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>
@@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
- <source>1.7</source>
- <target>1.7</target>
+ <source>9</source>
+ <target>9</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>