1 Reply Latest reply on Aug 12, 2009 11:54 AM by gseben

    What ActiveMq is used by Fuse ESB 4.1.0.1

    mkgupta421

      I am wondering what exact activeMQ (publicly available) version is used by fuse esb 4.1.0.1.

       

      I want to make sure that all the activeMQ libraries I gather from public repositories match the fuse activeMQ broker.

       

      The activeMQ jar in the fuse esb shows activemq-core-5.3.0.3-fuse.

       

      and activeMQ 5.3.0.3 is not publicly available.

       

      Thanks

      Mukesh

        • 1. Re: What ActiveMq is used by Fuse ESB 4.1.0.1
          gseben

          Fuse ESB 4.1.0.1 uses Fuse ActiveMQ 5.3.0.3 which is publicly available from the Fuse website.

          I guess that you are looking at the Apache ActiveMQ which is currently on version 5.2

           

          If you are going to use the fuse activemq use the following dependencies and repo:

           

                  <repository>
          
                    <id>open.iona.m2</id>
          
                    <name>IONA Open Source Community Release Repository</name>
          
                    <url>http://repo.open.iona.com/maven2</url>
          
                    <snapshots>
          
                      <enabled>false</enabled>
          
                    </snapshots>
          
                    <releases>
          
                      <enabled>true</enabled>
          
                    </releases>
          
                  </repository>
          
            .....
          
              <dependency>
                  <artifactId>activemq-core</artifactId>
                  <groupId>org.apache.activemq</groupId>
                  <version>5.3.0.3-fuse</version>
              </dependency>
          
          

           

          -Gio