Initial commit

This commit is contained in:
dfsek
2021-10-17 15:41:05 -07:00
commit ddf9ed86a7
100 changed files with 4856 additions and 0 deletions
@@ -0,0 +1,18 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("com.github.johnrengelman.shadow")
}
dependencies {
"shadedApi"("commons-io:commons-io:2.6")
}
tasks.named<ShadowJar>("shadowJar") {
archiveClassifier.set("")
relocate("org.apache.commons", "com.dfsek.terra.addons.terrascript.lib.commons")
}
tasks.named("build") {
finalizedBy(tasks.named("shadowJar"))
}