1apply plugin: 'java' 2 3sourceSets { 4 main { 5 java { 6 srcDirs = ['src'] 7 } 8 } 9} 10 11dependencies { 12 compile getAndroidPrebuilt('8') 13 compile project(path: ':junit', configuration: 'target') 14}