architectury-plugin
architectury-plugin copied to clipboard
A simple gradle plugin to enable developing multiplatform mods.
https://github.com/architectury/architectury-plugin/blob/0a37a6b6ed26600d0eea26d45281e50eb29233a2/src/main/kotlin/dev/architectury/plugin/transformers/AddRefmapName.kt#L42 This property is always the main refmap name, but it needs to be adjusted for client-only code.
When attempting to use an Arch project inside a Non-Arch-Loom, specifically where the common project uses `loom` instead of Arch loom or `VanillaGradle` libs that do not have `Fabric-Loom-Remap` defined...
Error: ```java "C:\Program Files\Java\jdk-19\bin\java.exe" -Dfabric.dli.config=E:\ChatTranslator\fabric\.gradle\loom-cache\launch.cfg -Dfabric.dli.env=client -Dfabric.dli.main=net.fabricmc.loader.impl.launch.knot.KnotClient -Darchitectury.main.class=E:\ChatTranslator\fabric\.gradle\architectury\.main_class -Darchitectury.runtime.transformer=E:\ChatTranslator\fabric\.gradle\architectury\.transforms -Darchitectury.properties=E:\ChatTranslator\fabric\.gradle\architectury\.properties -Djdk.attach.allowAttachSelf=true -javaagent:E:\ChatTranslator\.gradle\architectury\architectury-transformer-agent.jar "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.3\lib\idea_rt.jar=54801:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.3\bin" -Dfile.encoding=UTF-8 -Dsun.stdout.encoding=UTF-8 -Dsun.stderr.encoding=UTF-8 @C:\Users\tani\AppData\Local\Temp\idea_arg_file1270264523 dev.architectury.transformer.TransformerRuntime [Architectury Transformer]...
As title states; setting up a `test` source set (in my case for game tests) does not include the agent and runtime libraries required for launching the game. **Workaround:** Adding...
when the architectury plugin is applied, it tries to apply 4 more plugins ( `java`, `eclipse`, `idea` and `org.jetbrains.gradle.plugin.idea-ext` ), but the way it was done caused only the last...
See https://github.com/architectury/architectury-transformer/pull/16 Replace Java environment property access with property access provided by `TransformerContext`. This should fix problems with Gradle parallel build (`org.gradle.parallel`) such as wrong refmaps getting placed in the...
 Pretty late so Ill elaborate later
The artifact `architectury-plugin:architectury-plugin.gradle.plugin:3.4.158` published to maven has broken dependencies. I'm not sure how or why this could have happened. It might be a good idea to remove that version? This...
Fabric runs are missing all assets from the common project when choosing to use compileOnly mode. This does not happen for (neo)forge end. Below is the snippet causing it. If...