This repository has been archived on 2024-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Dominion/build.gradle.kts

73 lines
1.9 KiB
Plaintext
Raw Normal View History

2024-08-01 17:06:57 +08:00
plugins {
id("java")
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "cn.lunadeer"
version = "2.1.20-beta"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
// utf-8
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
2024-08-01 17:06:57 +08:00
2024-08-05 15:45:59 +08:00
allprojects {
apply(plugin = "java")
apply(plugin = "com.github.johnrengelman.shadow")
repositories {
mavenLocal()
mavenCentral()
maven("https://oss.sonatype.org/content/groups/public")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://jitpack.io")
maven("https://repo.mikeprimm.com/")
maven("https://ssl.lunadeer.cn:14454/repository/maven-snapshots/")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
}
2024-08-01 17:06:57 +08:00
dependencies {
compileOnly("com.github.BlueMap-Minecraft:BlueMapAPI:v2.6.2")
compileOnly("us.dynmap:DynmapCoreAPI:3.4")
compileOnly("me.clip:placeholderapi:2.11.6")
implementation("cn.lunadeer:MinecraftPluginUtils:1.3.7-SNAPSHOT")
implementation("org.yaml:snakeyaml:2.0")
}
2024-08-01 17:06:57 +08:00
2024-08-05 15:45:59 +08:00
tasks.processResources {
outputs.upToDateWhen { false }
// replace @version@ in plugin.yml with project version
filesMatching("**/plugin.yml") {
filter {
2024-08-05 15:45:59 +08:00
it.replace("@version@", rootProject.version.toString())
}
}
}
2024-08-01 18:03:21 +08:00
2024-08-05 15:45:59 +08:00
tasks.shadowJar {
archiveClassifier.set("")
archiveVersion.set(project.version.toString())
dependsOn(tasks.withType<ProcessResources>())
}
2024-08-05 15:45:59 +08:00
}
dependencies {
implementation(project(":core"))
implementation(project(":v1_20_1"))
implementation(project(":v1_21"))
}
tasks.shadowJar {
archiveClassifier.set("")
archiveVersion.set(project.version.toString())
}
tasks.register("buildPlugin") { // <<<< RUN THIS TASK TO BUILD PLUGIN
dependsOn(tasks.clean)
dependsOn(tasks.shadowJar)
}