mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-30 14:43:29 +01:00
d859085056
Co-authored-by: Aurelien <aurelien.domino@gmail.com>
16 lines
324 B
Groovy
16 lines
324 B
Groovy
plugins {
|
|
id 'net.minecraftforge.gradle' version '[6.0,6.2)'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 17
|
|
|
|
minecraft {
|
|
mappings channel: 'official', version: minecraftVersion
|
|
}
|
|
|
|
dependencies {
|
|
minecraft "net.minecraftforge:forge:${minecraftVersion}-${forgeVersion}"
|
|
implementation project(':api')
|
|
}
|