dont shade fastmath when it's unneeded

This commit is contained in:
dfsek
2022-05-30 17:56:13 -07:00
parent 59318d75fc
commit 4c2ece3eb7
14 changed files with 80 additions and 10 deletions

View File

@@ -5,8 +5,11 @@ version = version("1.0.0")
dependencies {
api("commons-io:commons-io:2.7")
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<ShadowJar>("shadowJar") {
relocate("org.apache.commons", "com.dfsek.terra.addons.terrascript.lib.commons")
relocate("net.jafama", "com.dfsek.terra.addons.terrascript.lib.jafama")
}