This repository has been archived on 2025-12-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RunBroker/runbroker-plugin/build.gradle.kts

32 lines
856 B
Kotlin
Raw Normal View History

2025-04-28 23:25:29 +08:00
/*
* Copyright © 2025 RTAkland
* Date: 2025/4/28 22:03
* 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") {
id = "cn.rtast.runbroker"
displayName = "RunBroker"
description = "Run Broker quickly"
tags = listOf("run", "auto-run")
implementationClass = "cn.rtast.runbroker.RunBroker"
}
}
}
dependencies {
implementation(project(":runbroker-common"))
implementation(kotlin("stdlib"))
compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.20")
}