mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-01 23:47:50 +00:00
14 lines
398 B
Plaintext
14 lines
398 B
Plaintext
version = version("1.0.0")
|
|
|
|
dependencies {
|
|
api("commons-io", "commons-io", Versions.Libraries.Internal.apacheIO)
|
|
implementation("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) |