simbot-component-kook icon indicating copy to clipboard operation
simbot-component-kook copied to clipboard

Springboot 3.2.9依赖4.1.1的组件版本时报错

Open chenwenhang opened this issue 8 months ago • 1 comments

是否会提供贡献?

版本信息

No response

涉及的编程语言

Java

项目构建工具

Maven

内容描述

Image

chenwenhang avatar May 17 '25 07:05 chenwenhang

尝试手动添加 kotlinx-coroutines-core-jvm:1.8.1 或以上版本依赖并确保运行时版本正确,例如刷新、清理maven的缓存或构件产物、通过 mvn dependency:tree 等方式查看实际被使用的依赖版本等。

ForteScarlet avatar May 17 '25 07:05 ForteScarlet

强制指定 kotlinx-coroutines-core-jvm 为 1.10.2 版本解决

<dependency>
    <groupId>org.jetbrains.kotlinx</groupId>
    <artifactId>kotlinx-coroutines-core-jvm</artifactId>
    <version>1.10.2</version>
</dependency>

chenwenhang avatar Jul 21 '25 15:07 chenwenhang