aboutsummaryrefslogtreecommitdiffstats
path: root/manifmerger/build.gradle
blob: c5f2aebdab0517c4ec9dafa553c46eefa930737c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
apply plugin: 'java'

dependencies {
    compile project(':common')
    compile project(':sdkmanager:libs:sdklib')
    compile 'kxml2:kxml2:2.3.0'

// not sure why the following line works in sdklib but not here...
//    testCompile project(':sdkmanager:libs:sdklib').sourceSets.test.output
    testCompile 'junit:junit:3.8.1'
}

group = 'com.android.tools'
archivesBaseName = 'manifest-merger'

sourceSets {
    main {
        java {
            srcDir 'src'
        }
        resources {
            srcDir 'src'
        }
    }
    test {
        java {
            srcDir 'tests/src'
        }
        resources {
            srcDir 'tests/src'
        }
    }
}