build.gradle 594 字节
Newer Older
1 2
ext.jadxClasspath = 'clsp-data/android-4.3.jar'

S
Skylot 已提交
3 4
apply plugin: "info.solidsoft.pitest"

S
Skylot 已提交
5
dependencies {
6 7
    runtime files(jadxClasspath)

S
Skylot 已提交
8
    compile files('lib/dx-1.10.jar')
9
    compile 'commons-io:commons-io:2.4'
S
Skylot 已提交
10
    compile 'org.ow2.asm:asm:5.0.3'
11
    compile 'com.intellij:annotations:12.0'
12 13

    testCompile 'org.smali:smali:2.0.3'
S
Skylot 已提交
14 15
}

S
Skylot 已提交
16 17 18 19 20
task packTests(type: Jar) {
    classifier = 'tests'
    from sourceSets.test.output
}

S
Skylot 已提交
21 22 23 24 25 26 27
pitest {
    excludedMethods = ['toString']
    threads = 4
    enableDefaultIncrementalAnalysis = true
    outputFormats = ['XML', 'HTML']
    jvmArgs = ['-Xmx12G']
}