<?xml version="1.0"?>
<project
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>com.sibu.orderHelper</groupId>
		<artifactId>com.sibu.orderHelper</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<groupId>com.sibu.orderHelper.activeMQ</groupId>
	<artifactId>com.sibu.orderHelper.activeMQ</artifactId>
	<name>com.sibu.orderHelper.activeMQ</name>
	<url>http://maven.apache.org</url>
	<properties>
		<activemq.version>5.5.0</activemq.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<dependencies>
	 <dependency>
  		<groupId>com.sibu.orderHelper.model</groupId>
  		<artifactId>com.sibu.orderHelper.model</artifactId>
  		<version>0.0.1-SNAPSHOT</version>
  	</dependency>
		<dependency>
			<groupId>org.apache.activemq</groupId>
			<artifactId>activemq-core</artifactId>
			<version>${activemq.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.activemq</groupId>
			<artifactId>activemq-pool</artifactId>
			<version>${activemq.version}</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.10</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>