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