### Add JitPack Maven Repository Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Add this to your build.gradle's repositories block to include the JitPack Maven repository. ```groovy // ... repositories { // ... your other Maven repositories above, if any ... maven { url = "https://jitpack.io" } } dependencies { // ... } // ... ``` -------------------------------- ### Configure Pehkui Dependency for NeoForge/ForgeGradle Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Use this dependency configuration in your build.gradle for NeoForge development with NeoGradle. ```groovy implementation "com.github.Virtuoel:Pehkui:${pehkui_version}" ``` -------------------------------- ### Configure Pehkui Dependency for Architectury Loom Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Use this dependency configuration in your build.gradle for NeoForge/Forge development with Architectury Loom. ```groovy modApi("com.github.Virtuoel:Pehkui:${pehkui_version}") ``` -------------------------------- ### Configure Pehkui Dependency for Quilt/Fabric Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Use this dependency configuration in your build.gradle for Quilt or Fabric development with Loom. ```groovy modApi("com.github.Virtuoel:Pehkui:${pehkui_version}", { exclude group: "net.fabricmc.fabric-api" }) ``` -------------------------------- ### Configure Pehkui Dependency for ForgeGradle Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Use this dependency configuration in your build.gradle for Forge development with ForgeGradle. ```groovy implementation fg.deobf("com.github.Virtuoel:Pehkui:${pehkui_version}") ``` -------------------------------- ### Enable Refmap Remapping for Older ForgeGradle Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Add these properties to your run configuration blocks (client, server, data) in build.gradle for ForgeGradle 4 and older to enable refmap remapping. ```groovy property 'mixin.env.remapRefMap', 'true' property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" ``` -------------------------------- ### Apply MixinGradle Plugin Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Apply the MixinGradle plugin in your build.gradle if using ForgeGradle with MixinGradle. ```groovy apply plugin: "org.spongepowered.mixin" ``` -------------------------------- ### Add SpongePowered Maven Repository for MixinGradle Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Include this Maven repository in your build.gradle's buildscript repositories block if using ForgeGradle with MixinGradle. ```groovy maven { url = "https://repo.spongepowered.org/repository/maven-public/" } ``` -------------------------------- ### Add MixinGradle Classpath Dependency Source: https://github.com/virtuoel/pehkui/blob/fabric/1.14.4-1.x.x/README.md Add this classpath dependency to your build.gradle's buildscript dependencies block if using ForgeGradle with MixinGradle. ```groovy classpath "org.spongepowered:mixingradle:0.7-SNAPSHOT" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.