Files
foundation/build.gradle.kts

41 lines
886 B
Plaintext
Raw Normal View History

2021-12-23 07:02:31 +00:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2021-12-21 21:32:34 +00:00
2021-12-19 02:05:59 +00:00
plugins {
2021-12-21 08:58:44 +00:00
java
id("gay.pizza.foundation.concrete-root") version "0.9.0"
id("gay.pizza.foundation.concrete-library") version "0.9.0" apply false
id("gay.pizza.foundation.concrete-plugin") version "0.9.0" apply false
id("com.github.ben-manes.versions") version "0.45.0"
2021-12-19 02:05:59 +00:00
}
2021-12-21 08:58:44 +00:00
allprojects {
repositories {
mavenCentral()
2021-12-21 08:58:44 +00:00
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/groups/public/")
}
2021-12-19 02:05:59 +00:00
}
}
version = "0.2"
2021-12-21 08:58:44 +00:00
subprojects {
2023-01-26 09:08:48 -08:00
group = "gay.pizza.foundation"
2021-12-23 07:02:31 +00:00
tasks.withType<KotlinCompile> {
kotlinOptions {
2023-01-28 19:35:10 -08:00
freeCompilerArgs += "-opt-in=kotlinx.serialization.ExperimentalSerializationApi"
2021-12-23 07:02:31 +00:00
}
}
2021-12-19 02:05:59 +00:00
}
2023-01-26 09:08:48 -08:00
concrete {
minecraftServerPath.set("server")
2023-01-26 20:36:48 -08:00
paperServerVersionGroup.set("1.18")
2023-01-26 09:08:48 -08:00
paperApiVersion.set("1.18.2-R0.1-SNAPSHOT")
acceptServerEula.set(true)
}