1

so I've been working on migrating a Maven project over onto a Gradle one. While doing so, I can across a class called TibjmsQueueConnectionFactory that I've been trying to figure out how trying to import. I've found most of my other imports on MVNRepository however, none of the ones I try for this one seem to work.

This is basically all I'm trying to do:

// https://mvnrepository.com/artifact/com.tibco/tibjms
    implementation group: 'com.tibco', name: 'tibjms', version: '1.0'

I did see somewhere that Tibco may not exist at that location at all, and maybe I'll have to download a jar file, but I'm not sure if this is the case or not. Has anyone else had this issue before? How did you resolve it?

Chloe Bennett
  • 901
  • 2
  • 10
  • 23

1 Answers1

1

A possible maven project pom dependency solution is available in this answer. You can get tibjms-4.1 from pom uploaded in openmindonline repo which has TibjmsQueueConnectionFactory. We are not able to access other version from icm.

Add openmindonline repo information in your repositories block in your build.gradle

repositories {
    // You can declare any Maven/Ivy/file repository here.
    maven {
        url "http://repository.openmindonline.it/"
    }
}

Then add implementation 'tibco-ems:tibjms:version:4.1' in dependencies block.

If you have jar file available locally, you can follow solutions available in this question.