### Apply ForgeGradle Plugin Source: https://github.com/minecraftforge/forgegradle/blob/FG_7.0/docs/Overview.md Apply the ForgeGradle plugin to your project using its ID and version. This is the standard way to integrate ForgeGradle into your build. ```groovy plugins { id 'net.minecraftforge.gradle' version '' } ``` -------------------------------- ### Depend on Minecraft Forge Source: https://github.com/minecraftforge/forgegradle/blob/FG_7.0/docs/Overview.md Declare a dependency on the Minecraft Forge artifact. This ensures your project has the necessary Forge libraries for development. ```groovy dependencies { implementation minecraft.dependency('net.minecraftforge:forge:1.21.10-60.0.0') } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.