
To be able to compile this plugin you will need 2 proprietary libraries from Oracle (database): aqapi13.jar and ojbc14.jar,
and a libray containing javax.jms. Here we have picked the jboss-messaging-client.jar

Try installing them to your local maven repository using the following commands:

mvn install:install-file -DgroupId=oracle -DartifactId=aqapi -Dversion=13 -Dpackaging=jar -Dfile=aqapi13.jar
mvn install:install-file -DgroupId=oracle -DartifactId=ojdbc -Dversion=14 -Dpackaging=jar -Dfile=ojdbc14.jar
mvn install:install-file -DgroupId=jboss-messaging-client -DartifactId=jboss-messaging-client -Dversion=1.2 -Dpackaging=jar -Dfile=jboss-messaging-client.jar


Important: 

1. When creating a Queue in Oracle AQ make sure to select a payload type of SYS AQ$_JMS_MESSAGE

2. Setup connection info to your Oracle AQ in the src/test/resource/oracle-aq-properties file.