mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-20 11:32:33 +00:00
16 lines
379 B
Plaintext
16 lines
379 B
Plaintext
import com.dfsek.terra.version
|
|
|
|
version = version("0.1.0")
|
|
|
|
dependencies {
|
|
shadedApi("commons-io:commons-io:2.6")
|
|
shadedImplementation("com.dfsek.tectonic:yaml:2.1.2")
|
|
}
|
|
|
|
tasks.withType<Jar> {
|
|
manifest {
|
|
attributes("Terra-Bootstrap-Addon-Entry-Point" to "com.dfsek.terra.addons.manifest.impl.ManifestAddonLoader")
|
|
}
|
|
}
|
|
|
|
project.extra.set("bootstrap", true) |