RetroFuturaGradle icon indicating copy to clipboard operation
RetroFuturaGradle copied to clipboard

A Gradle plugin for development of Minecraft 1.7.10 modifications, aiming to replace use of the legacy ForgeGradle toolchain.

Results 33 RetroFuturaGradle issues
Sort by recently updated
recently updated
newest added

Example: ```kotlin val stack: ItemStack = ItemStack(Items.IRON_INGOT) crafttweaker.api.minecraft.CraftTweakerMC.getItemStack(stack)

The error itself: ``` Could not determine the dependencies of task ':retromine:clientShadowJar'. > Could not resolve all files for configuration ':retromine:shadowImplementation'. > The consumer was configured to find attribute 'com.gtnewhorizons.retrofuturagradle.obfuscation'...

(Sorry for my bad English, hopes u will understand) In old versions I can use this functions: minecraft { replace("@TEST@", "Work") replaceIn("test.java") } this function change String "@TEST@" to String...

![image](https://github.com/GTNewHorizons/RetroFuturaGradle/assets/105061290/ebdeb9a0-5c49-4a53-8b5c-a5c44c882529) RetroFuturaGradle version is 1.3.27 mc version is 1.12.2

This great plugin currently supports versions 1.7.10 and 1.12.2. All the versions after 1.12.2 are compatible with modern forge gradle plugin, versions before 1.6.4 are supported by voldeloom plugin. But...

> For a much more complex buildscript with more features, check out the [GTNH buildscript](https://github.com/GTNewHorizons/ExampleMod1.7.10/blob/master/build.gradle). look inside GTNH buildscript ```groovy //version: 1707058017 plugins { id 'com.gtnewhorizons.gtnhconvention' } ``` ???

unless theres something im missing, this task should be a Jar type task since it generates a jar file

This PR adds the beginnings of a `migrateMappings` task inspired by [Loom's one](https://fabricmc.net/wiki/tutorial:migratemappings). It can remap regular Java source code as well as mixin targets. Currently only paths to local...

RFG already supports custom mappings (or does it), but they are generally difficult to use in practice due to several issues. Here is a list of what could be improved:...

Some 1.12 Forge mods (e.g. EnderCore) distribute with jar-in-jar dependencies, which usually get unpacked and loaded by FML at runtime. This PR makes `DependencyDeobfuscationTransform` unpack and deobfuscate those jar-in-jar dependencies...