Move image sampler to separate addon

This commit is contained in:
Astrash
2022-08-12 11:40:56 +10:00
parent 03ab463723
commit 329d94ba9c
7 changed files with 99 additions and 6 deletions
@@ -0,0 +1,13 @@
version = version("1.0.0")
dependencies {
compileOnlyApi(project(":common:addons:manifest-addon-loader"))
compileOnlyApi(project(":common:addons:library-image"))
compileOnlyApi(project(":common:addons:config-noise-function"))
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.noise.image.lib.jafama")
}