Partial layered generator implementation

This commit is contained in:
Astrash
2022-07-12 09:47:29 +10:00
parent a175601424
commit e831f85d45
20 changed files with 535 additions and 0 deletions
@@ -0,0 +1,12 @@
version = version("0.1.0")
dependencies {
compileOnlyApi(project(":common:addons:manifest-addon-loader"))
implementation("net.jafama", "jafama", Versions.Libraries.Internal.jafama)
testImplementation("net.jafama", "jafama", Versions.Libraries.Internal.jafama)
}
tasks.named<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar>("shadowJar") {
relocate("net.jafama", "com.dfsek.terra.addons.chunkgenerator.lib.jafama")
}