Initial commit
This commit is contained in:
32
runbroker-subserver-plugin/build.gradle.kts
Normal file
32
runbroker-subserver-plugin/build.gradle.kts
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright © 2025 RTAkland
|
||||
* Date: 2025/4/28 22:43
|
||||
* Open Source Under Apache-2.0 License
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
plugins {
|
||||
kotlin("jvm")
|
||||
id("com.gradle.plugin-publish") version "1.2.1"
|
||||
`java-gradle-plugin`
|
||||
}
|
||||
|
||||
gradlePlugin {
|
||||
website = "https://repo.rtast.cn/RTAkland/runbroker"
|
||||
vcsUrl = "https://repo.rtast.cn/RTAkland/runbroker.git"
|
||||
plugins {
|
||||
create("runbroker-subserver") {
|
||||
id = "cn.rtast.runbroker-subserver"
|
||||
displayName = "RunBrokerSubserver"
|
||||
description = "Run Broker subserver quickly"
|
||||
tags = listOf("run", "auto-run")
|
||||
implementationClass = "cn.rtast.runbroker.subserver.RunBrokerSubserver"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":runbroker-common"))
|
||||
implementation(kotlin("stdlib"))
|
||||
compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.20")
|
||||
}
|
||||
Reference in New Issue
Block a user