1apply plugin: 'java' 2 3dependencies { 4 compile project(':common') 5 compile project(':sdkmanager:libs:sdklib') 6 compile 'kxml2:kxml2:2.3.0' 7 8// not sure why the following line works in sdklib but not here... 9// testCompile project(':sdkmanager:libs:sdklib').sourceSets.test.output 10 testCompile 'junit:junit:3.8.1' 11} 12 13group = 'com.android.tools' 14archivesBaseName = 'manifest-merger' 15 16sourceSets { 17 main { 18 java { 19 srcDir 'src' 20 } 21 resources { 22 srcDir 'src' 23 } 24 } 25 test { 26 java { 27 srcDir 'tests/src' 28 } 29 resources { 30 srcDir 'tests/src' 31 } 32 } 33} 34