LuckPerms/forge/forge-api/build.gradle

16 lines
324 B
Groovy
Raw Normal View History

plugins {
id 'net.minecraftforge.gradle' version '[6.0,6.2)'
2022-05-20 21:09:04 +02:00
}
sourceCompatibility = 1.8
targetCompatibility = 17
minecraft {
mappings channel: 'official', version: minecraftVersion
}
dependencies {
minecraft "net.minecraftforge:forge:${minecraftVersion}-${forgeVersion}"
implementation project(':api')
}