mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-06 06:31:33 +00:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
e1e42df67e
|
|||
dc1ebe09b7
|
|||
1cd36b5529
|
|||
a06687507c
|
|||
5d4152d6df
|
|||
4c7dea2296
|
|||
c3ddcff572
|
|||
ee697e2c4f
|
|||
d304170062
|
|||
0129f761f2
|
|||
ace5b0ab3e
|
|||
18916bbd22
|
@ -2,12 +2,12 @@ plugins {
|
|||||||
`kotlin-dsl`
|
`kotlin-dsl`
|
||||||
kotlin("plugin.serialization") version "1.7.10"
|
kotlin("plugin.serialization") version "1.7.10"
|
||||||
|
|
||||||
id("maven-publish")
|
`maven-publish`
|
||||||
id("java-gradle-plugin")
|
`java-gradle-plugin`
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "gay.pizza.foundation"
|
group = "gay.pizza.foundation"
|
||||||
version = "0.6.0"
|
version = "0.9.0"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -15,8 +15,8 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10")
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10")
|
||||||
implementation("org.jetbrains.kotlin:kotlin-serialization:1.7.10")
|
implementation("org.jetbrains.kotlin:kotlin-serialization:1.8.10")
|
||||||
implementation("gradle.plugin.com.github.johnrengelman:shadow:7.1.2")
|
implementation("gradle.plugin.com.github.johnrengelman:shadow:7.1.2")
|
||||||
implementation("com.google.code.gson:gson:2.10.1")
|
implementation("com.google.code.gson:gson:2.10.1")
|
||||||
|
|
||||||
@ -100,5 +100,4 @@ publishing {
|
|||||||
|
|
||||||
tasks.withType<Wrapper> {
|
tasks.withType<Wrapper> {
|
||||||
gradleVersion = "7.6"
|
gradleVersion = "7.6"
|
||||||
distributionType = Wrapper.DistributionType.ALL
|
|
||||||
}
|
}
|
||||||
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
3
gradle/wrapper/gradle-wrapper.properties
vendored
3
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
|
||||||
|
networkTimeout=10000
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
12
gradlew
vendored
12
gradlew
vendored
@ -55,7 +55,7 @@
|
|||||||
# Darwin, MinGW, and NonStop.
|
# Darwin, MinGW, and NonStop.
|
||||||
#
|
#
|
||||||
# (3) This script is generated from the Groovy template
|
# (3) This script is generated from the Groovy template
|
||||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||||
# within the Gradle project.
|
# within the Gradle project.
|
||||||
#
|
#
|
||||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||||
@ -80,10 +80,10 @@ do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
# This is normally unused
|
||||||
|
# shellcheck disable=SC2034
|
||||||
APP_NAME="Gradle"
|
|
||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
|
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||||
|
|
||||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
@ -143,12 +143,16 @@ fi
|
|||||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
max*)
|
max*)
|
||||||
|
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC3045
|
||||||
MAX_FD=$( ulimit -H -n ) ||
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
warn "Could not query maximum file descriptor limit"
|
warn "Could not query maximum file descriptor limit"
|
||||||
esac
|
esac
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
'' | soft) :;; #(
|
'' | soft) :;; #(
|
||||||
*)
|
*)
|
||||||
|
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC3045
|
||||||
ulimit -n "$MAX_FD" ||
|
ulimit -n "$MAX_FD" ||
|
||||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
esac
|
esac
|
||||||
|
1
gradlew.bat
vendored
1
gradlew.bat
vendored
@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
|
|||||||
|
|
||||||
set DIRNAME=%~dp0
|
set DIRNAME=%~dp0
|
||||||
if "%DIRNAME%"=="" set DIRNAME=.
|
if "%DIRNAME%"=="" set DIRNAME=.
|
||||||
|
@rem This is normally unused
|
||||||
set APP_BASE_NAME=%~n0
|
set APP_BASE_NAME=%~n0
|
||||||
set APP_HOME=%DIRNAME%
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ open class ConcreteBasePlugin : Plugin<Project> {
|
|||||||
override fun apply(project: Project) {
|
override fun apply(project: Project) {
|
||||||
val versionWithBuild = if (System.getenv("CI_PIPELINE_IID") != null) {
|
val versionWithBuild = if (System.getenv("CI_PIPELINE_IID") != null) {
|
||||||
project.rootProject.version.toString() + ".${System.getenv("CI_PIPELINE_IID")}"
|
project.rootProject.version.toString() + ".${System.getenv("CI_PIPELINE_IID")}"
|
||||||
|
} else if (System.getenv("CONCRETE_BUILD_NUMBER") != null) {
|
||||||
|
project.rootProject.version.toString() + ".${System.getenv("CONCRETE_BUILD_NUMBER")}"
|
||||||
} else {
|
} else {
|
||||||
"DEV"
|
"DEV"
|
||||||
}
|
}
|
||||||
|
@ -27,5 +27,7 @@ class ConcretePluginPlugin : ConcreteBaseBukkitPlugin() {
|
|||||||
project.tasks.addTaskDependency("assemble", "shadowJar")
|
project.tasks.addTaskDependency("assemble", "shadowJar")
|
||||||
|
|
||||||
project.concreteRootProject.tasks["setupPaperServer"].dependsOn(project.tasks["shadowJar"])
|
project.concreteRootProject.tasks["setupPaperServer"].dependsOn(project.tasks["shadowJar"])
|
||||||
|
project.concreteRootProject.tasks.find<SetupLocalMinecraftServer>("setupLocalMinecraftServer")
|
||||||
|
?.dependsOn(project.tasks["shadowJar"])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ import org.gradle.api.Plugin
|
|||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.kotlin.dsl.apply
|
import org.gradle.kotlin.dsl.apply
|
||||||
import org.gradle.kotlin.dsl.create
|
import org.gradle.kotlin.dsl.create
|
||||||
|
import java.nio.file.Paths
|
||||||
|
|
||||||
class ConcreteRootPlugin : Plugin<Project> {
|
class ConcreteRootPlugin : Plugin<Project> {
|
||||||
override fun apply(project: Project) {
|
override fun apply(project: Project) {
|
||||||
@ -13,6 +14,21 @@ class ConcreteRootPlugin : Plugin<Project> {
|
|||||||
val runPaperServer = project.tasks.create<RunPaperServer>("runPaperServer")
|
val runPaperServer = project.tasks.create<RunPaperServer>("runPaperServer")
|
||||||
runPaperServer.dependsOn(setupPaperServer)
|
runPaperServer.dependsOn(setupPaperServer)
|
||||||
|
|
||||||
|
val maybeLocalServerPathString = project.properties["localMinecraftServerPath"]?.toString()
|
||||||
|
|
||||||
|
if (maybeLocalServerPathString != null) {
|
||||||
|
val localServerJarFileName = project.properties["localMinecraftServerJarFileName"]?.toString() ?: "server.jar"
|
||||||
|
val currentWorkingDirectory = System.getProperty("user.dir")
|
||||||
|
val localServerDirectory = Paths.get(currentWorkingDirectory).resolve(maybeLocalServerPathString).toFile()
|
||||||
|
val setupLocalMinecraftServer = project.tasks.create<SetupLocalMinecraftServer>("setupLocalMinecraftServer")
|
||||||
|
val runLocalMinecraftServer = project.tasks.create<RunLocalMinecraftServer>("runLocalMinecraftServer")
|
||||||
|
runLocalMinecraftServer.dependsOn(setupLocalMinecraftServer)
|
||||||
|
|
||||||
|
setupLocalMinecraftServer.minecraftServerDirectory = localServerDirectory
|
||||||
|
runLocalMinecraftServer.minecraftServerDirectory = localServerDirectory
|
||||||
|
runLocalMinecraftServer.serverJarFileName = localServerJarFileName
|
||||||
|
}
|
||||||
|
|
||||||
val updateManifests = project.tasks.create<UpdateManifestTask>("updateManifests")
|
val updateManifests = project.tasks.create<UpdateManifestTask>("updateManifests")
|
||||||
project.tasks.getByName("assemble").dependsOn(updateManifests)
|
project.tasks.getByName("assemble").dependsOn(updateManifests)
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
package gay.pizza.foundation.concrete
|
||||||
|
|
||||||
|
import org.gradle.api.tasks.Internal
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
open class RunLocalMinecraftServer : RunMinecraftServer() {
|
||||||
|
@Internal
|
||||||
|
lateinit var minecraftServerDirectory: File
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
lateinit var serverJarFileName: String
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
override fun getServerDirectory(): File = minecraftServerDirectory
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
override fun getServerJarName(): String = serverJarFileName
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
package gay.pizza.foundation.concrete
|
||||||
|
|
||||||
|
import org.gradle.api.DefaultTask
|
||||||
|
import org.gradle.api.tasks.Input
|
||||||
|
import org.gradle.api.tasks.Internal
|
||||||
|
import org.gradle.api.tasks.TaskAction
|
||||||
|
import java.io.File
|
||||||
|
import java.util.jar.JarFile
|
||||||
|
|
||||||
|
abstract class RunMinecraftServer : DefaultTask() {
|
||||||
|
init {
|
||||||
|
outputs.upToDateWhen { false }
|
||||||
|
}
|
||||||
|
|
||||||
|
@get:Input
|
||||||
|
var additionalServerArguments = mutableListOf<String>()
|
||||||
|
|
||||||
|
@get:Input
|
||||||
|
var disableServerGui = true
|
||||||
|
|
||||||
|
@TaskAction
|
||||||
|
fun runMinecraftServer() {
|
||||||
|
val minecraftServerDirectory = getServerDirectory()
|
||||||
|
val serverJarFile = minecraftServerDirectory.resolve(getServerJarName())
|
||||||
|
val mainClassName = readMainClass(serverJarFile)
|
||||||
|
|
||||||
|
project.javaexec {
|
||||||
|
classpath(serverJarFile.absolutePath)
|
||||||
|
workingDir(minecraftServerDirectory)
|
||||||
|
|
||||||
|
val allServerArguments = mutableListOf<String>()
|
||||||
|
allServerArguments.addAll(additionalServerArguments)
|
||||||
|
if (disableServerGui) {
|
||||||
|
allServerArguments.add("nogui")
|
||||||
|
}
|
||||||
|
|
||||||
|
args(allServerArguments)
|
||||||
|
mainClass.set(mainClassName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun readMainClass(file: File): String = JarFile(file).use { jar ->
|
||||||
|
jar.manifest.mainAttributes.getValue("Main-Class")!!
|
||||||
|
}
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
abstract fun getServerDirectory(): File
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
abstract fun getServerJarName(): String
|
||||||
|
}
|
@ -1,47 +1,20 @@
|
|||||||
package gay.pizza.foundation.concrete
|
package gay.pizza.foundation.concrete
|
||||||
|
|
||||||
import org.gradle.api.DefaultTask
|
import org.gradle.api.tasks.Internal
|
||||||
import org.gradle.api.tasks.Input
|
|
||||||
import org.gradle.api.tasks.TaskAction
|
|
||||||
import org.gradle.kotlin.dsl.getByType
|
import org.gradle.kotlin.dsl.getByType
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.util.jar.JarFile
|
|
||||||
|
|
||||||
open class RunPaperServer : DefaultTask() {
|
open class RunPaperServer : RunMinecraftServer() {
|
||||||
init {
|
init {
|
||||||
outputs.upToDateWhen { false }
|
outputs.upToDateWhen { false }
|
||||||
}
|
}
|
||||||
|
|
||||||
@get:Input
|
@Internal
|
||||||
var additionalServerArguments = mutableListOf<String>()
|
override fun getServerDirectory(): File {
|
||||||
|
|
||||||
@get:Input
|
|
||||||
var disableServerGui = true
|
|
||||||
|
|
||||||
@TaskAction
|
|
||||||
fun runPaperServer() {
|
|
||||||
val concrete = project.extensions.getByType<ConcreteExtension>()
|
val concrete = project.extensions.getByType<ConcreteExtension>()
|
||||||
|
return project.file(concrete.minecraftServerPath.get())
|
||||||
val minecraftServerDirectory = project.file(concrete.minecraftServerPath.get())
|
|
||||||
val paperJarFile = minecraftServerDirectory.resolve("paper.jar")
|
|
||||||
val mainClassName = readMainClass(paperJarFile)
|
|
||||||
|
|
||||||
project.javaexec {
|
|
||||||
classpath(paperJarFile.absolutePath)
|
|
||||||
workingDir(minecraftServerDirectory)
|
|
||||||
|
|
||||||
val allServerArguments = mutableListOf<String>()
|
|
||||||
allServerArguments.addAll(additionalServerArguments)
|
|
||||||
if (disableServerGui) {
|
|
||||||
allServerArguments.add("nogui")
|
|
||||||
}
|
|
||||||
|
|
||||||
args(allServerArguments)
|
|
||||||
mainClass.set(mainClassName)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun readMainClass(file: File): String = JarFile(file).use { jar ->
|
@Internal
|
||||||
jar.manifest.mainAttributes.getValue("Main-Class")!!
|
override fun getServerJarName(): String = "paper.jar"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
package gay.pizza.foundation.concrete
|
||||||
|
|
||||||
|
import org.gradle.api.tasks.Internal
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
open class SetupLocalMinecraftServer : SetupMinecraftServer() {
|
||||||
|
@Internal
|
||||||
|
lateinit var minecraftServerDirectory: File
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
override fun getServerDirectory(): File = minecraftServerDirectory
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
package gay.pizza.foundation.concrete
|
||||||
|
|
||||||
|
import org.gradle.api.DefaultTask
|
||||||
|
import org.gradle.api.tasks.Internal
|
||||||
|
import org.gradle.api.tasks.TaskAction
|
||||||
|
import org.gradle.kotlin.dsl.getByType
|
||||||
|
import java.io.File
|
||||||
|
import java.nio.file.Files
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
abstract class SetupMinecraftServer : DefaultTask() {
|
||||||
|
init {
|
||||||
|
outputs.upToDateWhen { false }
|
||||||
|
}
|
||||||
|
|
||||||
|
@TaskAction
|
||||||
|
fun setupMinecraftAction() {
|
||||||
|
val minecraftServerDirectory = getServerDirectory()
|
||||||
|
if (!minecraftServerDirectory.exists()) {
|
||||||
|
minecraftServerDirectory.mkdirs()
|
||||||
|
}
|
||||||
|
|
||||||
|
val serverPluginsDirectory = minecraftServerDirectory.resolve("plugins")
|
||||||
|
|
||||||
|
if (!serverPluginsDirectory.exists()) {
|
||||||
|
serverPluginsDirectory.mkdirs()
|
||||||
|
}
|
||||||
|
|
||||||
|
for (project in project.findPluginProjects()) {
|
||||||
|
val task = project.shadowJarTask!!
|
||||||
|
val pluginJarFile = task.outputs.files.first()
|
||||||
|
val pluginLinkFile = serverPluginsDirectory.resolve("${project.name}.jar")
|
||||||
|
pluginLinkFile.delete()
|
||||||
|
Files.createSymbolicLink(pluginLinkFile.toPath(), pluginJarFile.toPath())
|
||||||
|
}
|
||||||
|
|
||||||
|
val concrete = project.extensions.getByType<ConcreteExtension>()
|
||||||
|
if (concrete.acceptServerEula.isPresent && concrete.acceptServerEula.get()) {
|
||||||
|
val writer = minecraftServerDirectory.resolve("eula.txt").bufferedWriter()
|
||||||
|
val properties = Properties()
|
||||||
|
properties.setProperty("eula", "true")
|
||||||
|
properties.store(writer, "Written by Concrete")
|
||||||
|
writer.close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
abstract fun getServerDirectory(): File
|
||||||
|
}
|
@ -1,15 +1,13 @@
|
|||||||
package gay.pizza.foundation.concrete
|
package gay.pizza.foundation.concrete
|
||||||
|
|
||||||
import org.gradle.api.DefaultTask
|
|
||||||
import org.gradle.api.tasks.Input
|
import org.gradle.api.tasks.Input
|
||||||
|
import org.gradle.api.tasks.Internal
|
||||||
import org.gradle.api.tasks.TaskAction
|
import org.gradle.api.tasks.TaskAction
|
||||||
import org.gradle.api.tasks.options.Option
|
import org.gradle.api.tasks.options.Option
|
||||||
import org.gradle.kotlin.dsl.getByType
|
import org.gradle.kotlin.dsl.getByType
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.nio.file.Files
|
|
||||||
import java.util.Properties
|
|
||||||
|
|
||||||
open class SetupPaperServer : DefaultTask() {
|
open class SetupPaperServer : SetupMinecraftServer() {
|
||||||
init {
|
init {
|
||||||
outputs.upToDateWhen { false }
|
outputs.upToDateWhen { false }
|
||||||
}
|
}
|
||||||
@ -18,46 +16,18 @@ open class SetupPaperServer : DefaultTask() {
|
|||||||
@set:Option(option = "update", description = "Update Paper Server")
|
@set:Option(option = "update", description = "Update Paper Server")
|
||||||
var shouldUpdatePaperServer = true
|
var shouldUpdatePaperServer = true
|
||||||
|
|
||||||
private val paperVersionClient = PaperVersionClient()
|
|
||||||
|
|
||||||
@TaskAction
|
@TaskAction
|
||||||
fun downloadPaperTask() {
|
fun setupPaperServer() {
|
||||||
val concrete = project.extensions.getByType<ConcreteExtension>()
|
val concrete = project.extensions.getByType<ConcreteExtension>()
|
||||||
val minecraftServerDirectory = project.file(concrete.minecraftServerPath.get())
|
val minecraftServerDirectory = getServerDirectory()
|
||||||
|
val paperJarFile = project.file("${minecraftServerDirectory}/paper.jar")
|
||||||
if (!minecraftServerDirectory.exists()) {
|
|
||||||
minecraftServerDirectory.mkdirs()
|
|
||||||
}
|
|
||||||
|
|
||||||
val paperJarFile = project.file("${concrete.minecraftServerPath.get()}/paper.jar")
|
|
||||||
if (!paperJarFile.exists() || shouldUpdatePaperServer) {
|
if (!paperJarFile.exists() || shouldUpdatePaperServer) {
|
||||||
downloadLatestBuild(concrete.paperServerVersionGroup.get(), paperJarFile)
|
downloadLatestBuild(concrete.paperServerVersionGroup.get(), paperJarFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
val paperPluginsDirectory = minecraftServerDirectory.resolve("plugins")
|
|
||||||
|
|
||||||
if (!paperPluginsDirectory.exists()) {
|
|
||||||
paperPluginsDirectory.mkdirs()
|
|
||||||
}
|
|
||||||
|
|
||||||
for (project in project.findPluginProjects()) {
|
|
||||||
val task = project.shadowJarTask!!
|
|
||||||
val pluginJarFile = task.outputs.files.first()
|
|
||||||
val pluginLinkFile = paperPluginsDirectory.resolve("${project.name}.jar")
|
|
||||||
pluginLinkFile.delete()
|
|
||||||
Files.createSymbolicLink(pluginLinkFile.toPath(), pluginJarFile.toPath())
|
|
||||||
}
|
|
||||||
|
|
||||||
if (concrete.acceptServerEula.isPresent && concrete.acceptServerEula.get()) {
|
|
||||||
val writer = minecraftServerDirectory.resolve("eula.txt").bufferedWriter()
|
|
||||||
val properties = Properties()
|
|
||||||
properties.setProperty("eula", "true")
|
|
||||||
properties.store(writer, "Written by Concrete")
|
|
||||||
writer.close()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun downloadLatestBuild(paperVersionGroup: String, paperJarFile: File) {
|
private fun downloadLatestBuild(paperVersionGroup: String, paperJarFile: File) {
|
||||||
|
val paperVersionClient = PaperVersionClient()
|
||||||
if (project.gradle.startParameter.isOffline) {
|
if (project.gradle.startParameter.isOffline) {
|
||||||
if (!paperJarFile.exists()) {
|
if (!paperJarFile.exists()) {
|
||||||
throw RuntimeException("Offline mode is enabled and Paper has not been downloaded.")
|
throw RuntimeException("Offline mode is enabled and Paper has not been downloaded.")
|
||||||
@ -77,4 +47,10 @@ open class SetupPaperServer : DefaultTask() {
|
|||||||
logger.lifecycle("Paper Server ${build.version} build ${build.build} is up-to-date")
|
logger.lifecycle("Paper Server ${build.version} build ${build.build} is up-to-date")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Internal
|
||||||
|
override fun getServerDirectory(): File {
|
||||||
|
val concrete = project.extensions.getByType<ConcreteExtension>()
|
||||||
|
return project.file(concrete.minecraftServerPath.get())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ import java.nio.file.Path
|
|||||||
open class UpdateManifestTask : DefaultTask() {
|
open class UpdateManifestTask : DefaultTask() {
|
||||||
@TaskAction
|
@TaskAction
|
||||||
fun update() {
|
fun update() {
|
||||||
val manifestsDir = ensureManifestsDir()
|
val manifestsDir = ensureManifestsDirectory()
|
||||||
val updateFile = manifestsDir.resolve("update.json")
|
val updateFile = manifestsDir.resolve("update.json")
|
||||||
val rootPath = project.rootProject.rootDir.toPath()
|
val rootPath = project.rootProject.rootDir.toPath()
|
||||||
val updateManifest = project.findPluginProjects().mapNotNull { project ->
|
val updateManifest = project.findPluginProjects().mapNotNull { project ->
|
||||||
@ -24,7 +24,7 @@ open class UpdateManifestTask : DefaultTask() {
|
|||||||
Files.writeString(updateFile, Globals.gson.toJson(updateManifest))
|
Files.writeString(updateFile, Globals.gson.toJson(updateManifest))
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun ensureManifestsDir(): Path {
|
private fun ensureManifestsDirectory(): Path {
|
||||||
val manifestsDir = project.buildDir.resolve("manifests")
|
val manifestsDir = project.buildDir.resolve("manifests")
|
||||||
manifestsDir.mkdirs()
|
manifestsDir.mkdirs()
|
||||||
return manifestsDir.toPath()
|
return manifestsDir.toPath()
|
||||||
|
Reference in New Issue
Block a user