mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-18 06:10:16 +00:00
14 lines
372 B
Plaintext
14 lines
372 B
Plaintext
version = version("0.1.0")
|
|
|
|
dependencies {
|
|
shadedApi("commons-io:commons-io:2.6")
|
|
shadedImplementation("com.dfsek.tectonic:yaml:${Versions.Libraries.tectonic}")
|
|
}
|
|
|
|
tasks.withType<Jar> {
|
|
manifest {
|
|
attributes("Terra-Bootstrap-Addon-Entry-Point" to "com.dfsek.terra.addons.manifest.impl.ManifestAddonLoader")
|
|
}
|
|
}
|
|
|
|
project.extra.set("bootstrap", true) |