We are trying to do Maven build of Java component connecting to Oracle Advanced queue and have managed to link to the Oracle maven repository for the following two dependencies :
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.4</version>
</dependency>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ucp</artifactId>
<version>11.2.0.4</version>
</dependency>
We are hoping to use the class AQjmsFactory and understand this is in aqapi.jar file but we are unable to find this in the Oracle maven repository.
We have downloaded a 11.2.0.3 version of this file and placed it manually in our repository but we would like to get this from Oracle maven repository.
Could anyone advise if the AQjmsFactory is still a valid way of connecting to Oracle advanced queue and if so what is the best way of getting the aqapi
jar file and if there is a 11.2.0.4 version available. This is the dependency we have added based on a downloaded version :
<dependency>
<groupId>oracle</groupId>
<artifactId>aqapi</artifactId>
<version>11.2.0.3</version>
</dependency>
Any help greatly appreciated,
Lawrence