NIFI-1511 we now ensure groovy eclipse compiler is only used during testCompile goal

This closes #270

Signed-off-by: Matt Burgess <mattyb149@gmail.com>
This commit is contained in:
joewitt 2016-03-11 11:13:34 -05:00 committed by Matt Burgess
parent 1373bf6725
commit f6705f234c
1 changed files with 6 additions and 2 deletions

View File

@ -1321,11 +1321,15 @@ language governing permissions and limitations under the License. -->
<!-- Only run for tests -->
<execution>
<id>groovy-tests</id>
<phase>test</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
</configuration>
</execution>
</executions>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<source>1.7</source>
<target>1.7</target>
</configuration>