1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 11:42:16 -05:00

Add a gradle task testsOnJVM.

This commit is contained in:
Koji Arai 2014-04-29 21:48:51 +09:00
parent 59ae1d034c
commit 9a99c77653

View File

@ -50,3 +50,8 @@ android {
exclude 'META-INF/NOTICE' exclude 'META-INF/NOTICE'
} }
} }
task testsOnJVM(type :GradleBuild, dependsOn: assemble) {
buildFile = 'tests-on-jvm/build.gradle'
tasks = ['test']
}