added execution override for testCompile goal to compile test source using java 1.8 source format.

pull/395/head
jackygurui 9 years ago
parent 988d634d45
commit 7f3a4da455

@ -308,6 +308,22 @@
<optimize>true</optimize>
<showDeprecations>true</showDeprecations>
</configuration>
<executions>
<execution>
<id>default-testCompile</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<fork>true</fork>
<source>1.8</source>
<target>1.8</target>
<optimize>true</optimize>
<showDeprecations>true</showDeprecations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>

Loading…
Cancel
Save