mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-27 05:05:22 +01:00
16 lines
304 B
Groovy
16 lines
304 B
Groovy
plugins {
|
|
alias(libs.plugins.forgegradle)
|
|
}
|
|
|
|
sourceCompatibility = 17
|
|
targetCompatibility = 21
|
|
|
|
minecraft {
|
|
mappings channel: 'official', version: minecraftVersion
|
|
}
|
|
|
|
dependencies {
|
|
minecraft "net.minecraftforge:forge:${minecraftVersion}-${forgeVersion}"
|
|
implementation project(':api')
|
|
}
|