@@ -13,21 +13,33 @@ plugins {
1313}
1414
1515dependencies {
16- val jadxVersion = " 1.5.1 "
16+ val jadxVersion = " 1.5.3 "
1717 val isJadxSnapshot = jadxVersion.endsWith(" -SNAPSHOT" )
1818
1919 // use compile only scope to exclude jadx-core and its dependencies from result jar
2020 compileOnly(" io.github.skylot:jadx-core:$jadxVersion " ) {
2121 isChanging = isJadxSnapshot
2222 }
2323
24- testImplementation(" io.github.skylot:jadx-smali-input:$jadxVersion " ) {
25- isChanging = isJadxSnapshot
26- }
27- testImplementation(" ch.qos.logback:logback-classic:1.5.18" )
28- testImplementation(" org.assertj:assertj-core:3.27.3" )
29- testImplementation(" org.junit.jupiter:junit-jupiter:5.12.1" )
30- testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
24+ compileOnly(" io.github.skylot:jadx-gui:$jadxVersion " ) {
25+ isChanging = isJadxSnapshot
26+ }
27+
28+ compileOnly(" org.slf4j:slf4j-api:2.0.17" )
29+ // 来自 jadx-gui
30+ compileOnly(" com.fifesoft:rsyntaxtextarea:3.6.0" )
31+ compileOnly(" com.formdev:flatlaf-extras:3.7" )
32+
33+ implementation(" org.piccolo2d:piccolo2d-core:3.0.1" )
34+ implementation(" org.piccolo2d:piccolo2d-extras:3.0.1" )
35+
36+ // testImplementation("io.github.skylot:jadx-smali-input:$jadxVersion") {
37+ // isChanging = isJadxSnapshot
38+ // }
39+ // testImplementation("ch.qos.logback:logback-classic:1.5.18")
40+ // testImplementation("org.assertj:assertj-core:3.27.3")
41+ // testImplementation("org.junit.jupiter:junit-jupiter:5.12.1")
42+ // testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3143}
3244
3345repositories {
0 commit comments