在里程碑存储库中未找到Spring-boot-starter-activemq 3.0.0-M1

v2g6jxz6  于 2023-03-12  发布在  Spring
关注(0)|答案(2)|浏览(159)

尽管spring-boot-dependencies-3.0.0-M1.pom将spring-boot-starter-activemq-3.0.0-M1列为依赖项,但spring-boot-starter-activemq-3.0.0-M1在https://repo.spring.io/milestone中不可用。

pkln4tw6

pkln4tw61#

这可能是个意外。ActiveMQ支持已经被移除,因为JakartaEE版本中没有这个支持。您应该使用Artemis启动器。
发行说明中也对此进行了解释。
最后请记住,它“只是”一个里程碑版本,而不是最终版本(预计在2022年底左右)。

qoefvg9y

qoefvg9y2#

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-artemis</artifactId>
</dependency>

相关问题