diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisConfigurationCustomizer.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisConfigurationCustomizer.java index d603c1920f4..dc17699e3f5 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisConfigurationCustomizer.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisConfigurationCustomizer.java @@ -17,12 +17,12 @@ package org.springframework.boot.autoconfigure.jms.artemis; import org.apache.activemq.artemis.core.config.Configuration; -import org.apache.activemq.artemis.jms.server.embedded.EmbeddedJMS; +import org.apache.activemq.artemis.core.server.embedded.EmbeddedActiveMQ; /** * Callback interface that can be implemented by beans wishing to customize the Artemis * JMS server {@link Configuration} before it is used by an auto-configured - * {@link EmbeddedJMS} instance. + * {@link EmbeddedActiveMQ} instance. * * @author EddĂș MelĂ©ndez * @author Phillip Webb