Implement support for custom concrete items.

This commit is contained in:
2023-03-16 17:35:40 -07:00
parent bb3d3cb6bc
commit 4cec9a74a9
11 changed files with 80 additions and 33 deletions

View File

@ -2,9 +2,10 @@ plugins {
id("gay.pizza.foundation.concrete-root")
}
concrete {
concreteRoot {
minecraftServerPath.set("server")
paperServerVersionGroup.set("1.19")
paperApiVersion.set("1.19.3-R0.1-SNAPSHOT")
acceptServerEula.set(true)
expansiveItemInclusion.set(true)
}

View File

@ -7,6 +7,6 @@ dependencies {
implementation(project(":bukkit-plugins:common-library"))
}
plugin {
concreteItem {
dependency(project(":bukkit-plugins:goodbye-world"))
}

View File

@ -1,3 +1,10 @@
plugins {
id("gay.pizza.foundation.concrete-base")
}
concreteItem {
type.set("library")
fileInclusion {
tasks.jar.get().outputs.files.associateWith { "library-jar" }
}
}