<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">
        <modelVersion>4.0.0</modelVersion>

        <parent>
                <artifactId>m3ua</artifactId>
                <groupId>org.mobicents.protocols.ss7.m3ua</groupId>
                <version>7.4.1404</version>
        </parent>

        <artifactId>m3ua-impl</artifactId>

        <name>Restcomm jSS7 :: M3UA :: Impl :: ${project.artifactId}</name>

        <dependencies>
                <dependency>
                        <groupId>org.mobicents.commons</groupId>
                        <artifactId>commons</artifactId>
                </dependency>
                <dependency>
                        <groupId>org.mobicents.protocols.ss7.management</groupId>
                        <artifactId>shell-server-api</artifactId>
                        <version>${project.version}</version>
                </dependency>           
                <dependency>
                        <groupId>log4j</groupId>
                        <artifactId>log4j</artifactId>
                        <scope>provided</scope>
                </dependency>
                <dependency>
                        <groupId>org.testng</groupId>
                        <artifactId>testng</artifactId>
                </dependency>           
                <dependency>
                        <groupId>org.mobicents.protocols.ss7.m3ua</groupId>
                        <artifactId>m3ua-api</artifactId>
                        <version>${project.version}</version>
                </dependency>
                
                <!-- javolution -->
                <dependency>
                        <groupId>javolution</groupId>
                        <artifactId>javolution</artifactId>
                </dependency>
                <dependency>
                        <groupId>org.mobicents.protocols.ss7.mtp</groupId>
                        <artifactId>mtp</artifactId>
                </dependency>
                <dependency>
                        <groupId>org.mobicents.protocols.sctp</groupId>
                        <artifactId>sctp-api</artifactId>
                </dependency>
                <dependency>
                        <groupId>org.mobicents.protocols.sctp</groupId>
                        <artifactId>sctp-impl</artifactId>
                        <scope>test</scope>
                </dependency>
        </dependencies>

        <build>
                <finalName>${project.artifactId}-${project.version}</finalName>
                <plugins>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-surefire-plugin</artifactId>
								<version>
									${maven-surefire-plugin.version}
								</version>

                                <configuration>
                                        <suiteXmlFiles>
                                                <suiteXmlFile>testng-methods.xml</suiteXmlFile>
                                                <suiteXmlFile>testng-classes.xml</suiteXmlFile>
                                        </suiteXmlFiles>
                                </configuration>
                        </plugin>               
                        <plugin>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <groupId>org.apache.maven.plugins</groupId>
                                <version>2.3</version>
                                <configuration>
                                        <source>1.7</source>
                                        <target>1.7</target>
                                        <compilerArgument>
                                                -XDignore.symbol.file=true
                                        </compilerArgument>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
</project>
