EntityLib/buildSrc/build.gradle.kts
Bram 0a1e95a17d
Added: entitylib.shadow-conventions.gradle.kts
Renamed: entitylib.java-conventions.gradle.kts -> entitylib.library-conventions.gradle.kts
Switched: johnrengelman's shadow to googler's shadow fork
2024-07-07 19:08:21 +02:00

18 lines
No EOL
204 B
Text

plugins {
`kotlin-dsl`
}
kotlin {
compilerOptions {
jvmToolchain(8)
}
}
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
implementation(libs.shadow)
}