3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 14:40:21 +02:00
Velocity/buildSrc/build.gradle.kts

42 Zeilen
1.1 KiB
Plaintext

plugins {
`kotlin-dsl`
checkstyle
id("net.kyori.indra.publishing") version "2.0.6"
2023-01-02 00:46:33 +01:00
id("com.diffplug.spotless") version "6.12.0"
}
repositories {
mavenCentral()
maven("https://plugins.gradle.org/m2")
}
2023-01-02 00:46:33 +01:00
dependencies {
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.12.0")
}
gradlePlugin {
plugins {
register("set-manifest-impl-version") {
id = "set-manifest-impl-version"
implementationClass = "com.velocitypowered.script.SetManifestImplVersionPlugin"
}
register("velocity-checkstyle") {
id = "velocity-checkstyle"
implementationClass = "com.velocitypowered.script.VelocityCheckstylePlugin"
}
2023-01-02 00:46:33 +01:00
register("velocity-spotless") {
id = "velocity-spotless"
implementationClass = "com.velocitypowered.script.VelocitySpotlessPlugin"
}
register("velocity-publish") {
id = "velocity-publish"
implementationClass = "com.velocitypowered.script.VelocityPublishPlugin"
}
}
}
2023-01-02 00:46:33 +01:00
spotless {
kotlin {
licenseHeaderFile(project.rootProject.file("../HEADER.txt"))
}
}