plugins { id 'edu.sc.seis.launch4j' version '2.4.4' id 'com.github.johnrengelman.shadow' version '4.0.3' } apply plugin: 'application' mainClassName = 'jadx.gui.JadxGUI' sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 dependencies { compile(project(":jadx-core")) compile(project(":jadx-cli")) compile 'com.fifesoft:rsyntaxtextarea:3.0.0' compile 'com.google.code.gson:gson:2.8.5' compile files('libs/jfontchooser-1.0.5.jar') compile 'hu.kazocsaba:image-viewer:1.2.3' compile 'org.apache.commons:commons-lang3:3.8.1' compile 'org.apache.commons:commons-text:1.6' compile 'io.reactivex.rxjava2:rxjava:2.2.5' compile "com.github.akarnokd:rxjava2-swing:0.3.3" compile 'com.android.tools.build:apksig:3.3.0' } applicationDistribution.with { into('') { from '../' include 'README.md' include 'NOTICE' include 'LICENSE' } } jar { manifest { attributes( "Main-Class": mainClassName, "Class-Path": configurations.compile.collect { it.getName() }.join(' ') ) } } startScripts { // The option -XX:+UseG1GC is only relevant for Java 8. Starting with Java 9 G1GC is already the default GC defaultJvmOpts = ['-Xms128M', '-Xmx4g', '-Dawt.useSystemAAFontSettings=lcd', '-Dswing.aatext=true', '-XX:+UseG1GC'] 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 } } launch4j { mainClassName = 'jadx.gui.JadxGUI' copyConfigurable = project.tasks.shadowJar.outputs.files jar = "lib/${project.tasks.shadowJar.archiveName}" icon = "${projectDir}/src/main/resources/logos/jadx-logo.ico" outfile = "jadx-gui-${version}.exe" copyright = 'Skylot' windowTitle = 'jadx' companyName = 'jadx' jreMinVersion = '1.8.0' jvmOptions = ['-Dawt.useSystemAAFontSettings=lcd', '-Dswing.aatext=true', '-XX:+UseG1GC'] jreRuntimeBits = "64" initialHeapPercent = 5 maxHeapSize = 4096 maxHeapPercent = 70 } test { jacoco { enabled = false } }