summaryrefslogtreecommitdiffstats
path: root/settings.gradle
blob: 2f330604c6363844f4a246b8a6f366480586642e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pluginManagement {
    repositories {
        jcenter()
        maven {
            name = 'Fabric'
            url = 'https://maven.fabricmc.net/'
        }
        gradlePluginPortal()
    }

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

}