mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-03 05:10:56 +00:00
Fix samples.
This commit is contained in:
@ -9,7 +9,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "gay.pizza.foundation"
|
group = "gay.pizza.foundation"
|
||||||
version = "0.15.0"
|
version = "0.15.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -3,7 +3,7 @@ plugins {
|
|||||||
id("gay.pizza.foundation.concrete-plugin")
|
id("gay.pizza.foundation.concrete-plugin")
|
||||||
}
|
}
|
||||||
|
|
||||||
concrete {
|
concreteRoot {
|
||||||
minecraftServerPath.set("server")
|
minecraftServerPath.set("server")
|
||||||
paperServerVersionGroup.set("1.19")
|
paperServerVersionGroup.set("1.19")
|
||||||
paperApiVersion.set("1.19.3-R0.1-SNAPSHOT")
|
paperApiVersion.set("1.19.3-R0.1-SNAPSHOT")
|
||||||
|
@ -2,7 +2,7 @@ plugins {
|
|||||||
id("gay.pizza.foundation.concrete-root")
|
id("gay.pizza.foundation.concrete-root")
|
||||||
}
|
}
|
||||||
|
|
||||||
concrete {
|
concreteRoot {
|
||||||
minecraftServerPath.set("server")
|
minecraftServerPath.set("server")
|
||||||
paperServerVersionGroup.set("1.19")
|
paperServerVersionGroup.set("1.19")
|
||||||
paperApiVersion.set("1.19.3-R0.1-SNAPSHOT")
|
paperApiVersion.set("1.19.3-R0.1-SNAPSHOT")
|
||||||
|
9
tools/build-samples.sh
Executable file
9
tools/build-samples.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
cd "$(dirname "${0}")/.."
|
||||||
|
for SAMPLE_PATH in samples/*
|
||||||
|
do
|
||||||
|
pushd "${SAMPLE_PATH}" > /dev/null
|
||||||
|
./gradlew -q build
|
||||||
|
popd > /dev/null
|
||||||
|
done
|
Reference in New Issue
Block a user