mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-14 11:46:06 +00:00
27 lines
729 B
Plaintext
27 lines
729 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
}
|
|
|
|
buildscript {
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("org.ow2.asm:asm:9.3") // TODO: remove when ShadowJar updates ASM version
|
|
force("org.ow2.asm:asm-commons:9.3")
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url = uri("https://repo.codemc.org/repository/maven-public") }
|
|
}
|
|
|
|
dependencies {
|
|
implementation("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:+")
|
|
implementation("org.ow2.asm:asm:9.3")
|
|
implementation("org.ow2.asm:asm-tree:9.3")
|
|
implementation("com.dfsek.tectonic:common:4.2.0")
|
|
implementation("org.yaml:snakeyaml:1.27")
|
|
} |