Hi

IBM MQ is a commercial product, so you have to purchase it from IBM.
And IBM can deliver those JARs as part of Java JMS clients.
IBM do not publish those JARs to a Maven repository. And I doubt it
would be legal to do so by others. Hence you cannot find those JARs in
the internet.

If you have a IBM WebSphere AS installation on your computer. Then
those JARs is often provided as part of the AS installation.
You can then search for these JARs in that installation. I have done
that in the past.

Then you can install the JARs from the file system to your local m2
repo using a maven command.
Check the maven documentation how to do that.


And from that your Maven project should be able to pickup and use the
JARs and compile the project.


On Tue, Mar 27, 2012 at 3:17 AM, newbiee <m_ess...@hotmail.com> wrote:
> Hi,
>
> I am getting BUILD error because following JARS could not be found.
>
> com.ibm.mq:com.ibm.mq.jmqi:jar:7.0.1.3
> com.ibm:com.ibm.mqjms:jar:7.0.1.3
> com.ibm:com.ibm.mqjms:jar:7.0.1.3
>
> To use IBM MQ, I have added following in my POM:
>
>        <dependency>
>      <groupId>com.ibm.mq</groupId>
>      <artifactId>com.ibm.mq.jmqi</artifactId>
>      <version>7.0.1.3</version>
>      <scope>compile</scope>
>    </dependency>
>
>        <dependency>
>      <groupId>com.ibm</groupId>
>      <artifactId>com.ibm.mqjms</artifactId>
>      <version>7.0.1.3</version>
>      <scope>compile</scope>
>    </dependency>
>
>    <dependency>
>      <groupId>com.ibm.mq.dhbcore</groupId>
>      <artifactId>dhbcore</artifactId>
>      <version>7.0.1.3</version>
>      <scope>compile</scope>
>    </dependency>
>
> How can I download the JAR manually. What is the site address where these
> JARs are available or is there a way to fix the issue?
>
> Thank you
>
> --
> View this message in context: 
> http://camel.465427.n5.nabble.com/JAR-for-IBM-MQ-tp5596719p5596719.html
> Sent from the Camel - Users mailing list archive at Nabble.com.



-- 
Claus Ibsen
-----------------
CamelOne 2012 Conference, May 15-16, 2012: http://camelone.com
FuseSource
Email: cib...@fusesource.com
Web: http://fusesource.com
Twitter: davsclaus, fusenews
Blog: http://davsclaus.blogspot.com/
Author of Camel in Action: http://www.manning.com/ibsen/

Reply via email to