build(dependencies): 更新依赖项版本.

更新与日志和测试有关的依赖项版本.
This commit is contained in:
LamGC 2022-10-25 17:18:24 +08:00
parent d4b1438b0b
commit 6e5cd07c51
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D
3 changed files with 9 additions and 9 deletions

View File

@ -10,9 +10,9 @@ dependencies {
implementation(project(":scalabot-meta")) implementation(project(":scalabot-meta"))
implementation(project(":scalabot-extension")) implementation(project(":scalabot-extension"))
implementation("org.slf4j:slf4j-api:2.0.0") implementation("org.slf4j:slf4j-api:2.0.3")
implementation("io.github.microutils:kotlin-logging:2.1.23") implementation("io.github.microutils:kotlin-logging:3.0.2")
implementation("ch.qos.logback:logback-classic:1.4.0") implementation("ch.qos.logback:logback-classic:1.4.4")
val aetherVersion = "1.1.0" val aetherVersion = "1.1.0"
implementation("org.eclipse.aether:aether-api:$aetherVersion") implementation("org.eclipse.aether:aether-api:$aetherVersion")
@ -40,7 +40,7 @@ dependencies {
implementation("io.prometheus:simpleclient_httpserver:0.16.0") implementation("io.prometheus:simpleclient_httpserver:0.16.0")
testImplementation(kotlin("test")) testImplementation(kotlin("test"))
testImplementation("io.mockk:mockk:1.12.7") testImplementation("io.mockk:mockk:1.13.2")
testImplementation("com.github.stefanbirkner:system-lambda:1.2.1") testImplementation("com.github.stefanbirkner:system-lambda:1.2.1")
} }

View File

@ -10,14 +10,14 @@ plugins {
dependencies { dependencies {
implementation("commons-codec:commons-codec:1.15") implementation("commons-codec:commons-codec:1.15")
api("org.telegram:telegrambots-abilities:6.1.0") api("org.telegram:telegrambots-abilities:6.1.0")
api("org.slf4j:slf4j-api:2.0.0") api("org.slf4j:slf4j-api:2.0.3")
// Added as a mitigation measure for vulnerabilities. // Added as a mitigation measure for vulnerabilities.
// When the relevant reference dependency updates it, it will be removed. // When the relevant reference dependency updates it, it will be removed.
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.4.2") implementation("com.fasterxml.jackson.core:jackson-databind:2.13.4.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0") testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testImplementation("org.mockito:mockito-core:4.7.0") testImplementation("org.mockito:mockito-core:4.8.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
} }

View File

@ -1,7 +1,7 @@
plugins { plugins {
kotlin("jvm") kotlin("jvm")
id("org.jetbrains.kotlinx.kover") id("org.jetbrains.kotlinx.kover")
id("org.jetbrains.dokka") version "1.7.0" id("org.jetbrains.dokka") version "1.7.20"
`maven-publish` `maven-publish`
signing signing
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.11.1" id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.11.1"
@ -21,11 +21,11 @@ dependencies {
api("com.google.code.gson:gson:2.9.0") api("com.google.code.gson:gson:2.9.0")
testImplementation(kotlin("test")) testImplementation(kotlin("test"))
testImplementation("io.mockk:mockk:1.12.7") testImplementation("io.mockk:mockk:1.13.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0") testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
dokkaHtmlPlugin("org.jetbrains.dokka:javadoc-plugin:1.7.10") dokkaHtmlPlugin("org.jetbrains.dokka:javadoc-plugin:1.7.20")
} }
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach { tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {