Skip to content

Instantly share code, notes, and snippets.

@ILikePlayingGames
ILikePlayingGames / use-plugins-dsl-for-forge-mdk-11.15.1.2318.md
Last active February 24, 2022 20:53
How to Use Gradle Plugins DSL on Forge MDK 11.15.1.2318

How to Use Gradle Plugins DSL on Forge MDK 11.15.1.2318

  1. Create a new file in the root folder of your project called settings.gradle and add this to it:
pluginManagement {
    repositories {
        gradlePluginPortal()
        maven {
            name 'MinecraftForge Maven'
@ILikePlayingGames
ILikePlayingGames / use-plugins-dsl-for-forge-mdk-39.md
Last active February 24, 2022 20:55
How to Use Gradle Plugins DSL on Forge MDK 39+

How to Use Gradle Plugins DSL on Forge MDK 39+

This guide was created for Forge MDK 39.0.76 but should work for future Forge versions for Minecraft 1.18.x.

  1. Create a new file in the root folder of your project called settings.gradle and add this to it:
pluginManagement {
    repositories {
        gradlePluginPortal()
        maven {