mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-17 13:49:57 +00:00
22 lines
496 B
Plaintext
22 lines
496 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven("https://repo.codemc.org/repository/maven-public") {
|
|
name = "CodeMC"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.libraries.internal.shadow)
|
|
|
|
|
|
implementation(libs.libraries.internal.asm)
|
|
implementation(libs.libraries.internal.asm.tree)
|
|
implementation(libs.libraries.tectonic)
|
|
implementation(libs.libraries.snakeyaml)
|
|
} |