mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-16 21:30:08 +00:00
18 lines
501 B
Plaintext
18 lines
501 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
}
|
|
|
|
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.2")
|
|
implementation("org.ow2.asm:asm-tree:9.2")
|
|
implementation("com.dfsek.tectonic:common:3.1.0")
|
|
implementation("org.yaml:snakeyaml:1.27")
|
|
} |