80 lines
2.0 KiB
Groovy
80 lines
2.0 KiB
Groovy
plugins {
|
|
id 'application'
|
|
id 'edu.sc.seis.launch4j' version '2.4.6'
|
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":jadx-core"))
|
|
compile(project(":jadx-cli"))
|
|
|
|
compile 'com.fifesoft:rsyntaxtextarea:3.0.8'
|
|
compile files('libs/jfontchooser-1.0.5.jar')
|
|
compile 'hu.kazocsaba:image-viewer:1.2.3'
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.9'
|
|
compile 'org.apache.commons:commons-text:1.8'
|
|
|
|
compile 'io.reactivex.rxjava2:rxjava:2.2.17'
|
|
compile "com.github.akarnokd:rxjava2-swing:0.3.7"
|
|
compile 'com.android.tools.build:apksig:3.5.3'
|
|
}
|
|
|
|
application {
|
|
applicationName = 'jadx-gui'
|
|
mainClassName = 'jadx.gui.JadxGUI'
|
|
}
|
|
|
|
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
|
|
downloadUrl = 'https://adoptopenjdk.net/releases.html?variant=openjdk11&jvmVariant=hotspot#x64_win'
|
|
}
|
|
|
|
test {
|
|
jacoco {
|
|
enabled = false
|
|
}
|
|
}
|