diff options
author | Johan Kaving <johan.kaving@symsoft.com> | 2014-07-02 13:46:48 +0200 |
---|---|---|
committer | Johan Kaving <johan.kaving@symsoft.com> | 2014-07-02 13:46:48 +0200 |
commit | c499faf6a8579cdfd266a22c2d5ef491d3bea6cb (patch) | |
tree | 94813ef5bf148495a49f68c181b146fb6df533e7 /pom.xml | |
parent | 63403c46a523b4cef3ccf42c481966176ea50335 (diff) | |
download | javassist-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.xml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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> |