Files
jadx/jadx-gui/build.gradle
T
2014-08-15 22:39:34 +04:00

25 lines
434 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'
}
applicationDistribution.with {
into('') {
from '../'
include 'README.md'
include 'NOTICE'
}
}
test {
jacoco {
// coveralls plugin not support multi-project
enabled = false
}
}