<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">

	<parent>
	    <groupId>org.codehaus.jira.mng.XXX</groupId>
    	<artifactId>parent</artifactId>
	    <version>SNAPSHOT</version>
	</parent>	
	
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.codehaus.jira.mng.XXX</groupId>
    <artifactId>mng-module5-XXX</artifactId>
    <packaging>jar</packaging>
    <name>Module-5 XXX</name>
    <version>1.0-SNAPSHOT</version>
    <description><![CDATA[Module 5 of issue XXX.]]></description>

    <dependencies>
   		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-j2ee</artifactId>
		</dependency>
     	<dependency>
   	        <groupId>org.codehaus.jira.mng.XXX</groupId>
       	    <artifactId>mng-module3-XXX</artifactId>
			<exclusions>
				<exclusion>
		            <groupId>com.thoughtworks.xstream</groupId>
           			<artifactId>xstream</artifactId>
				</exclusion>
			</exclusions>
        </dependency>
     	<dependency>
   	        <groupId>org.codehaus.jira.mng.XXX</groupId>
       	    <artifactId>mng-module4-XXX</artifactId>
			<type>ejb-client</type>
			<exclusions>
				<exclusion>
		            <groupId>com.thoughtworks.xstream</groupId>
           			<artifactId>xstream</artifactId>
				</exclusion>
			</exclusions>
        </dependency>
		<!-- for test -->
        <dependency>
   	        <groupId>org.codehaus.jira.mng.XXX</groupId>
       	    <artifactId>mng-module1-XXX</artifactId>
        </dependency>
        <dependency>
   	        <groupId>org.codehaus.jira.mng.XXX</groupId>
       	    <artifactId>mng-module3-XXX</artifactId>
			<type>test-jar</type>
        </dependency>
    </dependencies>
    
</project>
