-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle.kts
36 lines (28 loc) · 930 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
plugins {
val kotlinVersion = "1.7.22"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.14.0"
}
group = "io.github.kloping"
version = "1.2.1"
repositories {
maven("https://repo1.maven.org/maven2/")
mavenLocal()
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
compileOnly("net.mamoe:mirai-core")
compileOnly("net.mamoe:mirai-console-compiler-common")
implementation(platform("net.mamoe:mirai-bom:2.14.0"))
testImplementation("net.mamoe:mirai-core-mock")
testImplementation("net.mamoe:mirai-logging-slf4j")
implementation(platform("org.slf4j:slf4j-parent:2.0.6"))
testImplementation("org.slf4j:slf4j-simple")
compileOnly("io.github.Kloping:SpringTool:0.5.8")
compileOnly("io.github.Kloping:spt-web:0.2.0")
}
mirai {
jvmTarget = JavaVersion.VERSION_11
}