Skip to content

Commit

Permalink
build: 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Jul 19, 2024
1 parent f60503a commit e80e572
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "xyz.cssxsh"
version = "1.8.0"
version = "1.8.1"

repositories {
mavenLocal()
Expand Down Expand Up @@ -43,12 +43,15 @@ dependencies {
implementation("io.ktor:ktor-client-content-negotiation")
implementation("io.ktor:ktor-serialization-kotlinx-json")
//
implementation(platform("org.slf4j:slf4j-parent:2.0.12"))
implementation(platform("org.slf4j:slf4j-parent:2.0.13"))
testImplementation("org.slf4j:slf4j-simple")
}

mirai {
jvmTarget = JavaVersion.VERSION_11
if (System.getenv("CI").toBoolean()) {
useTestConsoleFrontEnd = null
}
}

tasks {
Expand Down
7 changes: 0 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "bilibili-helper"
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import xyz.cssxsh.mirai.bilibili.data.*

@PublishedApi
internal object BiliHelperPlugin : KotlinPlugin(
JvmPluginDescription(id = "xyz.cssxsh.mirai.plugin.bilibili-helper", version = "1.8.0") {
JvmPluginDescription(id = "xyz.cssxsh.mirai.plugin.bilibili-helper", version = "1.8.1") {
name("bilibili-helper")
author("cssxsh")

Expand Down
3 changes: 1 addition & 2 deletions src/test/kotlin/xyz/cssxsh/bilibili/ApiTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import xyz.cssxsh.bilibili.api.*

internal abstract class ApiTest {
init {
System.setProperty(EXCEPTION_JSON_CACHE, "./test")
System.getProperty(JSON_IGNORE, "false")
System.setProperty(EXCEPTION_JSON_CACHE, "./run/exception")
}

protected val client = BiliClient()
Expand Down

0 comments on commit e80e572

Please sign in to comment.