2021-01-28 09:32:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019-2021 Mamoe Technologies and contributors.
|
|
|
|
*
|
|
|
|
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
|
|
|
|
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
|
|
|
|
*
|
|
|
|
* https://github.com/mamoe/mirai/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
2020-05-14 08:18:03 +08:00
|
|
|
plugins {
|
2020-08-16 23:21:11 +08:00
|
|
|
kotlin("jvm")
|
|
|
|
kotlin("plugin.serialization")
|
2020-05-14 08:18:03 +08:00
|
|
|
id("java")
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-08-31 22:41:29 +08:00
|
|
|
implementation("org.jline:jline:3.21.0")
|
|
|
|
implementation("org.fusesource.jansi:jansi:2.4.0")
|
2022-01-15 02:26:44 +08:00
|
|
|
compileAndTestRuntime(project(":mirai-core-utils"))
|
2020-06-20 20:46:20 +08:00
|
|
|
|
2020-09-20 00:28:57 +08:00
|
|
|
compileAndTestRuntime(project(":mirai-console"))
|
2021-12-06 20:34:00 +08:00
|
|
|
compileAndTestRuntime(project(":mirai-core-api"))
|
2021-12-24 00:54:53 +08:00
|
|
|
compileAndTestRuntime(project(":mirai-core-utils"))
|
2022-08-31 22:40:27 +08:00
|
|
|
compileAndTestRuntime(project(":mirai-console-frontend-base"))
|
2020-12-18 16:36:49 +08:00
|
|
|
compileAndTestRuntime(kotlin("stdlib-jdk8", Versions.kotlinStdlib)) // must specify `compileOnly` explicitly
|
2020-05-14 08:18:03 +08:00
|
|
|
|
2021-12-06 20:34:00 +08:00
|
|
|
testApi(project(":mirai-core"))
|
2020-05-14 08:18:03 +08:00
|
|
|
testApi(project(":mirai-console"))
|
2020-06-23 22:18:49 +08:00
|
|
|
}
|
|
|
|
|
2020-09-18 12:43:57 +08:00
|
|
|
version = Versions.consoleTerminal
|
2020-05-14 08:18:03 +08:00
|
|
|
|
2020-09-18 12:43:57 +08:00
|
|
|
description = "Console Terminal CLI frontend for mirai"
|
2020-06-28 11:45:21 +08:00
|
|
|
|
2021-05-25 12:13:43 +08:00
|
|
|
configurePublishing("mirai-console-terminal")
|
2020-06-28 11:45:21 +08:00
|
|
|
|
|
|
|
// endregion
|