提交 c46703a0 编写于 作者: S Skylot

gui: run jadx-gui without console

上级 129a7c39
apply plugin: 'application'
mainClassName = "jadx.gui.JadxGUI"
mainClassName = 'jadx.gui.JadxGUI'
dependencies {
compile(project(":jadx-core"))
......@@ -28,6 +28,16 @@ jar {
}
}
startScripts {
doLast {
def str = windowsScript.text
str = str.replaceAll('java.exe', 'javaw.exe')
str = str.replaceAll('"%JAVA_EXE%" %DEFAULT_JVM_OPTS%',
'start "jadx-gui" /B "%JAVA_EXE%" %DEFAULT_JVM_OPTS%')
windowsScript.text = str
}
}
test {
jacoco {
// coveralls plugin not support multi-project
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册