I recently upgraded another app from 2.7.2 to 2.8. This app is using an
activemq component and works correctly in 2.7.2.

When I try to compile with 2.8.0, I'm getting the error below.  Looks like
activemq-camel-5.5.0 is referring to a renamed class? Any ideas when this
class went? I'm including camel-spring.

error: value activeMQComponent is not a member of object
org.apache.activemq.camel.component.ActiveMQComponent
[ERROR] error: error while loading ActiveMQComponent, Missing dependency
'class org.springframework.jms.connection.SingleConnectionFactory', required
by
/Users/t/.m2/repository/org/apache/activemq/activemq-camel/5.5.0/activemq-camel-5.5.0.jar(org/apache/activemq/camel/component/ActiveMQComponent.class)

val activeMQComponent = ActiveMQComponent.activeMQComponent(connectorUri)

My maven dependencies are:

    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-core</artifactId>
      <version>${camel.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-spring</artifactId>
      <version>${camel.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-jms</artifactId>
      <version>${camel.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.activemq</groupId>
      <artifactId>activemq-camel</artifactId>
      <version>${activemq.version}</version>
    </dependency>

Reply via email to