build.gradle 506 字节
Newer Older
S
Skylot 已提交
1 2 3 4 5 6 7
apply plugin: 'application'

mainClassName = "jadx.gui.JadxGUI"

dependencies {
    compile(project(":jadx-core"))
    compile(project(":jadx-cli"))
S
Skylot 已提交
8
    compile 'com.fifesoft:rsyntaxtextarea:2.5.6'
S
Skylot 已提交
9
    compile 'com.google.code.gson:gson:2.3.1'
S
Skylot 已提交
10 11 12 13
}

applicationDistribution.with {
    into('') {
S
Skylot 已提交
14
        from '../'
S
Skylot 已提交
15 16
        include 'README.md'
        include 'NOTICE'
S
Skylot 已提交
17
        include 'LICENSE'
S
Skylot 已提交
18 19 20
    }
}

21 22 23 24 25 26
test {
    jacoco {
        // coveralls plugin not support multi-project
        enabled = false
    }
}