summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGravatar Runemoro2020-03-09 06:04:08 -0400
committerGravatar GitHub2020-03-09 10:04:08 +0000
commit58c0aeb15a65324de08a914dfa62cc68a516a4e3 (patch)
treef45e8141c0864692051149a478c5a0a6bbe68686 /build.gradle
parentMade Enigma gui translatable (#193) (diff)
downloadenigma-58c0aeb15a65324de08a914dfa62cc68a516a4e3.tar.gz
enigma-58c0aeb15a65324de08a914dfa62cc68a516a4e3.tar.xz
enigma-58c0aeb15a65324de08a914dfa62cc68a516a4e3.zip
CFR support (#192)
* Add decompiler API * Add CFR support
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index d704bfa0..7d1e4196 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,7 +19,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
19apply plugin: 'maven' 19apply plugin: 'maven'
20 20
21group = 'cuchaz' 21group = 'cuchaz'
22version = '0.14.3' 22version = '0.15'
23 23
24def generatedSourcesDir = "$buildDir/generated-src" 24def generatedSourcesDir = "$buildDir/generated-src"
25 25
@@ -72,22 +72,22 @@ configurations {
72 72
73dependencies { 73dependencies {
74 compile 'com.google.guava:guava:28.0-jre' 74 compile 'com.google.guava:guava:28.0-jre'
75 compile 'net.fabricmc:procyon-fabric-compilertools:0.5.35.+'
76 compile 'com.google.code.gson:gson:2.8.5' 75 compile 'com.google.code.gson:gson:2.8.5'
77 compile 'org.ow2.asm:asm:7.1' 76 compile 'org.ow2.asm:asm:7.1'
78 compile 'org.ow2.asm:asm-commons:7.1' 77 compile 'org.ow2.asm:asm-commons:7.1'
79 compile 'org.ow2.asm:asm-tree:7.1' 78 compile 'org.ow2.asm:asm-tree:7.1'
80 compile 'org.ow2.asm:asm-util:7.1' 79 compile 'org.ow2.asm:asm-util:7.1'
81
82 compile 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' 80 compile 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3'
83 81
82 compile 'net.fabricmc:procyon-fabric-compilertools:0.5.35.+'
83 compile 'net.fabricmc:cfr:0.0.1'
84
84 application name: "darcula", version: "1.0.0" 85 application name: "darcula", version: "1.0.0"
85 application 'de.sciss:syntaxpane:1.2.+' 86 application 'de.sciss:syntaxpane:1.2.+'
86 application 'me.xdrop:fuzzywuzzy:1.2.0' 87 application 'me.xdrop:fuzzywuzzy:1.2.0'
87 88
88 testCompile 'junit:junit:4.+' 89 testCompile 'junit:junit:4.+'
89 testCompile 'org.hamcrest:hamcrest-all:1.+' 90 testCompile 'org.hamcrest:hamcrest-all:1.+'
90
91 proGuard 'net.sf.proguard:proguard-base:5.+' 91 proGuard 'net.sf.proguard:proguard-base:5.+'
92} 92}
93 93