summary refs log tree commit diff stats
path: root/settings.gradle
blob: f8c3c62ff9d3cae12209c71501732ddac1847904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pluginManagement {
    repositories {
        maven {
            name = 'Fabric'
            url = 'https://maven.fabricmc.net/'
        }
        mavenCentral()
        gradlePluginPortal()
    }

    plugins {
        id 'fabric-loom' version loom_version
        id "org.jetbrains.kotlin.jvm" version kotlin_version
    }

}