Update version to v1.0.0

Update dependencies
Fix null UUID error
This commit is contained in:
2023-09-03 01:13:02 +08:00
parent 8c143bb4d4
commit feb2d309e0
4 changed files with 13 additions and 17 deletions

View File

@@ -1,22 +1,21 @@
plugins {
val kotlinVersion = "1.7.10"
val kotlinVersion = "1.8.10"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.13.2"
id("net.mamoe.mirai-console") version "2.15.0"
}
group = "top.jie65535"
version = "0.1.2"
group = "top.jie65535.mirai"
version = "1.0.0"
repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}
val ktorVersion = "2.2.2"
dependencies {
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
implementation("io.ktor:ktor-client-core-jvm:2.3.2")
implementation("io.ktor:ktor-client-okhttp-jvm:2.3.2")
}