Use default directory structure for tests-on-jvm subproject

This commit is contained in:
cketti 2014-12-19 23:15:23 +01:00
parent 1212f9d0f2
commit 7d3cea87f9
16 changed files with 0 additions and 9 deletions

View File

@ -13,20 +13,11 @@ dependencies {
}
sourceSets {
main {
java {
srcDirs = []
}
}
test {
compileClasspath += files(project(':k9mail').compileDebugJava.destinationDir)
compileClasspath += project(':k9mail').compileDebugJava.classpath
runtimeClasspath += files(project(':k9mail').compileDebugJava.destinationDir)
runtimeClasspath += project(':k9mail').compileDebugJava.classpath
java {
srcDirs = ['src']
}
}
}