26 lines
480 B
Groovy
26 lines
480 B
Groovy
apply plugin: 'application'
|
|
|
|
mainClassName = "jadx.gui.JadxGUI"
|
|
|
|
dependencies {
|
|
compile(project(":jadx-core"))
|
|
compile(project(":jadx-cli"))
|
|
compile 'com.fifesoft:rsyntaxtextarea:2.5.0'
|
|
compile 'com.google.code.gson:gson:2.2.4'
|
|
}
|
|
|
|
applicationDistribution.with {
|
|
into('') {
|
|
from '../'
|
|
include 'README.md'
|
|
include 'NOTICE'
|
|
}
|
|
}
|
|
|
|
test {
|
|
jacoco {
|
|
// coveralls plugin not support multi-project
|
|
enabled = false
|
|
}
|
|
}
|