Fix standalone test to work with check, and comment out mavenLocal

This commit is contained in:
Ryan Ernst 2015-11-04 10:28:31 -08:00
parent 3d8b4dae33
commit a534ace896
2 changed files with 3 additions and 1 deletions

View File

@ -102,7 +102,8 @@ allprojects {
subprojects {
repositories {
mavenLocal()
// Uncomment the following line to first resolve against the maven local repo. This is useful for eclipse users who want to work on test-framework.
// mavenLocal()
mavenCentral()
maven {
name 'sonatype-snapshots'

View File

@ -46,5 +46,6 @@ class StandaloneTestPlugin implements Plugin<Project> {
classpath = project.sourceSets.test.runtimeClasspath
testClassesDir project.sourceSets.test.output.classesDir
}
project.check.dependsOn(test)
}
}