aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorJohan Kaving <johan.kaving@symsoft.com>2014-07-02 13:46:48 +0200
committerJohan Kaving <johan.kaving@symsoft.com>2014-07-02 13:46:48 +0200
commitc499faf6a8579cdfd266a22c2d5ef491d3bea6cb (patch)
tree94813ef5bf148495a49f68c181b146fb6df533e7 /pom.xml
parent63403c46a523b4cef3ccf42c481966176ea50335 (diff)
downloadjavassist-c499faf6a8579cdfd266a22c2d5ef491d3bea6cb.tar.gz
javassist-c499faf6a8579cdfd266a22c2d5ef491d3bea6cb.zip
Update pom.xml to specify that test code is Java 8
To get the test case JvstTest4.testMethodParameters() to work the <testSource> and <testTarget> elements are set to "1.8" and the compiler argument "-parameters" is added.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index eac70838..255a2a54 100644
--- a/pom.xml
+++ b/pom.xml
@@ -140,8 +140,9 @@
<configuration>
<source>1.6</source>
<target>1.6</target>
- <testSource>1.7</testSource>
- <testTarget>1.7</testTarget>
+ <testSource>1.8</testSource>
+ <testTarget>1.8</testTarget>
+ <compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
<plugin>