-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
30 lines (23 loc) · 946 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
plugins {
val kotlinVersion = "1.9.0"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.16.0"
}
group = "top.limbang"
version = "1.1.6"
repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}
dependencies {
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.okio:okio:3.7.0")
implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.11")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
compileOnly("top.limbang:mirai-plugin-general-interface:1.0.2")
testImplementation(kotlin("test"))
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.6.4")
testImplementation("com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.11")
}