2

Even though the spring-boot-dependencies-3.0.0-M1.pom lists the spring-boot-starter-activemq-3.0.0-M1 as a dependency, spring-boot-starter-activemq-3.0.0-M1 is not available in https://repo.spring.io/milestone.

  • That is probably by accident. ActiveMQ support has been removed as that isn't available in a JakartaEE version. You should use the Artemis starter instead. – M. Deinum Feb 04 '22 at 09:55

1 Answers1

1

That is probably by accident. ActiveMQ support has been removed as that isn't available in a JakartaEE version. You should use the Artemis starter instead.

This is also explained in the release notes.

Finally remember it is "just" a milestone release NOT a final release (which is expected somewhere around the end of 2022).

M. Deinum
  • 115,695
  • 22
  • 220
  • 224
  • Denium I'm having problems migrating my project to spring boot 3.0.0. I added artemis instead of the old activeMQ. I changed lots of packages in my code from javax to jakarta. However I'm having problems, that artemis 27.0 is using javax.jms itself for javax.jms.TextMessage parent of ACtiveMQTextMessage. This is causing compilation error for me – Marcin K. Dec 14 '22 at 10:20
  • 1
    Don't hijack comments to ask a question, as a proper question in stead. You should only bring in the starter don't manage dependencies on artemis yourself (which probably pulls in the old API). – M. Deinum Dec 14 '22 at 10:21