mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 10:30:42 +00:00
19 lines
515 B
Plaintext
19 lines
515 B
Plaintext
repositories {
|
|
maven { url = uri("https://jitpack.io/") }
|
|
}
|
|
|
|
dependencies {
|
|
shadedApi("commons-io:commons-io:2.6")
|
|
shadedApi("com.github.Querz:NBT:6.1")
|
|
shadedApi(project(":common:implementation:base"))
|
|
|
|
shadedImplementation("com.google.guava:guava:31.0.1-jre")
|
|
|
|
shadedImplementation("ch.qos.logback:logback-classic:1.2.7")
|
|
|
|
shadedImplementation("net.jafama", "jafama", Versions.Libraries.Internal.jafama)
|
|
}
|
|
|
|
tasks.named("build") {
|
|
finalizedBy(tasks.named("shadowJar"))
|
|
} |