Files
jadx/jadx-gui/build.gradle
T
2015-03-16 22:44:21 +03:00

28 lines
555 B
Groovy

apply plugin: 'application'
mainClassName = "jadx.gui.JadxGUI"
dependencies {
compile(project(":jadx-core"))
compile(project(":jadx-cli"))
compile 'com.fifesoft:rsyntaxtextarea:2.5.6'
compile 'com.google.code.gson:gson:2.3.1'
compile files('libs/jfontchooser-1.0.5.jar')
}
applicationDistribution.with {
into('') {
from '../'
include 'README.md'
include 'NOTICE'
include 'LICENSE'
}
}
test {
jacoco {
// coveralls plugin not support multi-project
enabled = false
}
}