<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
		<artifactId>maven-parent</artifactId>
		<groupId>org.gcube.tools</groupId>
		<version>1.0.0</version>
		<relativePath />
	</parent>
  <groupId>org.gcube.common</groupId>
  <artifactId>queueManager</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>queueManager</name>
  
  <dependencies>
  <dependency>
   <groupId>com.sun.messaging.mq</groupId>
   <artifactId>jms</artifactId>
   <version>4.6-b01</version>
  </dependency>
  <dependency>
   <groupId>org.apache.activemq</groupId>
   <artifactId>activemq-core</artifactId>
   <version>5.6.0</version>
  </dependency>
    <dependency>
  	<groupId>junit</groupId>
  	<artifactId>junit</artifactId>
  	<version>4.10</version>
  	<scope>test</scope>
  </dependency>
  <dependency>
  	<groupId>org.gcube.core</groupId>
  	<artifactId>gcf</artifactId>
  	<version>1.4.1-SNAPSHOT</version>
  	<scope>provided</scope>
  </dependency>
  <dependency>
  	<groupId>com.thoughtworks.xstream</groupId>
  	<artifactId>xstream</artifactId>
  	<version>1.3.1</version>
  	<scope>provided</scope>
  </dependency>
  <dependency>
  	<groupId>org.gcube.tools</groupId>
  	<artifactId>maven-parent</artifactId>
  	<version>1.0.0</version>
  	<type>pom</type>
  </dependency> 
  </dependencies>
  
</project>