diff options
| author | 2020-03-09 06:04:08 -0400 | |
|---|---|---|
| committer | 2020-03-09 10:04:08 +0000 | |
| commit | 58c0aeb15a65324de08a914dfa62cc68a516a4e3 (patch) | |
| tree | f45e8141c0864692051149a478c5a0a6bbe68686 /build.gradle | |
| parent | Made Enigma gui translatable (#193) (diff) | |
| download | enigma-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.gradle | 8 |
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' | |||
| 19 | apply plugin: 'maven' | 19 | apply plugin: 'maven' |
| 20 | 20 | ||
| 21 | group = 'cuchaz' | 21 | group = 'cuchaz' |
| 22 | version = '0.14.3' | 22 | version = '0.15' |
| 23 | 23 | ||
| 24 | def generatedSourcesDir = "$buildDir/generated-src" | 24 | def generatedSourcesDir = "$buildDir/generated-src" |
| 25 | 25 | ||
| @@ -72,22 +72,22 @@ configurations { | |||
| 72 | 72 | ||
| 73 | dependencies { | 73 | dependencies { |
| 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 | ||