Add number predicate addon (#412)

This commit is contained in:
Astrashh
2023-10-10 11:35:26 +11:00
committed by GitHub
parent b5e7c7c112
commit abd83e8278
4 changed files with 100 additions and 0 deletions
@@ -0,0 +1,13 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
version = version("1.0.0")
dependencies {
compileOnlyApi(project(":common:addons:manifest-addon-loader"))
api("com.dfsek", "paralithic", Versions.Libraries.paralithic)
}
tasks.named<ShadowJar>("shadowJar") {
relocate("com.dfsek.paralithic", "com.dfsek.terra.addons.numberpredicate.lib.paralithic")
}