mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-22 04:22:30 +00:00
26 lines
621 B
Plaintext
26 lines
621 B
Plaintext
import com.dfsek.terra.configureCommon
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
configureCommon()
|
|
|
|
group = "com.dfsek.terra"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io/") }
|
|
}
|
|
|
|
dependencies {
|
|
"shadedApi"(project(":common"))
|
|
"shadedImplementation"("com.github.Querz:NBT:5.2") // Standalone NBT API
|
|
"shadedImplementation"("org.yaml:snakeyaml:1.27")
|
|
"shadedImplementation"("com.googlecode.json-simple:json-simple:1.1.1")
|
|
}
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
relocate("net.querz", "com.dfsek.terra.libs.nbt")
|
|
} |