blob: d3aea12ca02a003fdcdfd53f63dd9662bf29e36a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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")
}
|