aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: 546d1a8d6ee022102cae0a38f734d87a1bfa7865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
plugins {
    `kotlin-dsl`
    java
}

repositories {
    mavenCentral()
    maven("https://maven.minecraftforge.net")
    maven("https://jitpack.io") {
        mavenContent {
            includeGroupByRegex("(com|io)\\.github\\..+")
        }
    }
    mavenLocal()
}

val kotlin_version = "1.8.21"

dependencies {
    implementation("com.github.thefightagainstmalware:ForgeGradle:5a1fcb9")
    implementation("com.github.thefightagainstmalware:MixinGradle:92e66fe")
    implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
}

dependencyLocking {
    lockAllConfigurations()
}