Files
jadx/jadx-gui/build.gradle
T
2014-07-18 23:29:36 +04:00

35 lines
747 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'
}
startScripts {
doLast {
// increase default max heap size
String var = 'DEFAULT_JVM_OPTS='
String args = '-Xmx1300M'
unixScript.text = unixScript.text.replace(var + '""', var + '"' + args + '"')
windowsScript.text = windowsScript.text.replace(var, var + args)
}
}
applicationDistribution.with {
into('') {
from '../'
include 'README.md'
include 'NOTICE'
}
}
test {
jacoco {
// coveralls plugin not support multi-project
enabled = false
}
}