mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-05 06:01:34 +00:00
Implement support for custom concrete items.
This commit is contained in:
@ -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)
|
||||
}
|
||||
|
@ -7,6 +7,6 @@ dependencies {
|
||||
implementation(project(":bukkit-plugins:common-library"))
|
||||
}
|
||||
|
||||
plugin {
|
||||
concreteItem {
|
||||
dependency(project(":bukkit-plugins:goodbye-world"))
|
||||
}
|
||||
|
@ -1,3 +1,10 @@
|
||||
plugins {
|
||||
id("gay.pizza.foundation.concrete-base")
|
||||
}
|
||||
|
||||
concreteItem {
|
||||
type.set("library")
|
||||
fileInclusion {
|
||||
tasks.jar.get().outputs.files.associateWith { "library-jar" }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user