Keep the Groovy plugin in Gradle to ensure that tests are run properly

This commit is contained in:
R. Tyler Croy 2015-04-03 10:08:09 -07:00
parent f496b0e04e
commit 2d137d80c1
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ plugins {
}
apply plugin: 'maven'
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'eclipse'
@ -66,6 +67,7 @@ test {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
assemble.dependsOn check
////////////////////////////////////////////////////////////////////////////////