begin work on janky pregenerator

This commit is contained in:
dfsek
2021-01-04 00:21:49 -07:00
parent 3c12a98ef3
commit ee093397d3
17 changed files with 631 additions and 3 deletions
+26
View File
@@ -0,0 +1,26 @@
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")
}