diff options
author | modmuss50 <modmuss50@gmail.com> | 2021-10-11 13:47:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 13:47:16 +0100 |
commit | e2439b7f57a82c365d4726d068b68ea2eb606f78 (patch) | |
tree | 5cc78058c70e46e22d1ada1a4411c9356cbdf906 /src/test/resources/projects/decompile | |
parent | 5315d3c5b24bcce47268ef8962c07aeb934b014b (diff) | |
download | architectury-loom-e2439b7f57a82c365d4726d068b68ea2eb606f78.tar.gz architectury-loom-e2439b7f57a82c365d4726d068b68ea2eb606f78.tar.bz2 architectury-loom-e2439b7f57a82c365d4726d068b68ea2eb606f78.zip |
Rewrite GenSources including full support for CFR. (#511)
* Rewrite CFR decompiler interface. Support javadoc
* CFR line numbers and fixes.
* Cleanup and fix
* Use WorkerExecutor to fork, massively cleans up the fernflower code, but does remove the fancy multithreaded logging.
* Use IPC to get logging back from the decompilers.
* Cleanup UnpickJarTask, fix leak in IPCServer
* Used published CFR build
* Handle older windows versions that do not support AF_UNIX.
* Fixes and basic unit test
* Improve memory handling of genSources
* Stop decompile worker JVM
Diffstat (limited to 'src/test/resources/projects/decompile')
-rw-r--r-- | src/test/resources/projects/decompile/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/resources/projects/decompile/build.gradle b/src/test/resources/projects/decompile/build.gradle index daa90b14..2c859c0f 100644 --- a/src/test/resources/projects/decompile/build.gradle +++ b/src/test/resources/projects/decompile/build.gradle @@ -3,7 +3,7 @@ plugins { } dependencies { - minecraft "com.mojang:minecraft:1.16.5" - mappings "net.fabricmc:yarn:1.16.5+build.5:v2" - modImplementation "net.fabricmc:fabric-loader:0.11.2" + minecraft "com.mojang:minecraft:21w38a" + mappings "net.fabricmc:yarn:21w38a+build.11:v2" + modImplementation "net.fabricmc:fabric-loader:0.11.7" } |