mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2025-02-20 06:21:55 +01:00
17 lines
244 B
Groovy
17 lines
244 B
Groovy
|
plugins {
|
||
|
alias(libs.plugins.moddevgradle)
|
||
|
}
|
||
|
|
||
|
sourceCompatibility = 17
|
||
|
targetCompatibility = 21
|
||
|
|
||
|
neoForge {
|
||
|
version = project.neoForgeVersion
|
||
|
|
||
|
validateAccessTransformers = true
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':api')
|
||
|
}
|