mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-03 16:35:50 +00:00
17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
version = version("1.0.0")
|
|
|
|
repositories {
|
|
maven { url = uri("https://jitpack.io/") }
|
|
}
|
|
|
|
dependencies {
|
|
api("commons-io:commons-io:2.7")
|
|
api("com.github.Querz:NBT:6.1")
|
|
compileOnlyApi(project(":common:addons:manifest-addon-loader"))
|
|
}
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
relocate("org.apache.commons", "com.dfsek.terra.addons.sponge.lib.commons")
|
|
} |