mirror of
https://github.com/ViaVersion/ViaForge.git
synced 2025-02-18 02:02:24 +01:00
15 lines
315 B
Groovy
15 lines
315 B
Groovy
|
plugins {
|
||
|
id "florianmichael.viaforge.base-conventions"
|
||
|
id "florianmichael.viaforge.forge-conventions"
|
||
|
}
|
||
|
|
||
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||
|
|
||
|
minecraft {
|
||
|
mappings channel: "official", version: "1.20.2"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
minecraft "net.minecraftforge:forge:1.20.2-48.0.30"
|
||
|
}
|