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

	<parent>
		<groupId>org.mobicents.servers.media</groupId>
		<artifactId>mms-core</artifactId>
		<version>2.0.0.BETA2</version>
	</parent>
	
	<artifactId>mms-impl</artifactId>	

	<name>Mobicents Media Server Impl</name>

	<!-- properties>
		<maven.test.skip>true</maven.test.skip>
	</properties -->

	<dependencies>
		<dependency>
			<groupId>${pom.groupId}</groupId>
			<artifactId>mms-spi</artifactId>
			<version>${pom.version}</version>
		</dependency>
		<dependency>
			<groupId>concurrent</groupId>
			<artifactId>concurrent</artifactId>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-common</artifactId>
			<scope>provided</scope>
		</dependency>
		<!--
			dependency> <groupId>org.jboss.jbossas</groupId>
			<artifactId>jboss-as-system-jmx</artifactId>
			<version>5.0.0.GA</version> </dependency -->
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.jboss.microcontainer</groupId>
			<artifactId>jboss-kernel</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jboss.aop</groupId>
			<artifactId>jboss-aop</artifactId>
			<version>2.0.0.SP1</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jboss.microcontainer</groupId>
			<artifactId>jboss-aop-mc-int</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.mobicents.external.jspeex</groupId>
			<artifactId>jspeex</artifactId>
			<version>0.9.7</version>
		</dependency>
		<dependency>
			<groupId>net.java.stun4j</groupId>
			<artifactId>stun4j</artifactId>
			<version>1.0.MOBICENTS</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.sip</groupId>
			<artifactId>jain-sip-ri</artifactId>
			<version>${jain-sip-ri.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.mobicents.external.tritonus</groupId>
			<artifactId>tritonus_share</artifactId>
			<version>0.3.6</version>
		</dependency>
		<dependency>
			<groupId>org.mobicents.external.tritonus</groupId>
			<artifactId>tritonus_gsm</artifactId>
			<version>0.3.6</version>
		</dependency>
		<dependency>
			<groupId>org.jboss</groupId>
			<artifactId>jboss-test</artifactId>
			<version>1.0.5.GA</version>
			<scope>test</scope>
		</dependency>
                <dependency>
                    <groupId>org.mobicents.external.freetts</groupId>
                    <artifactId>freetts</artifactId>
                    <version>1.2.2</version>
                </dependency>
	</dependencies>
	<build>
		<finalName>${pom.artifactId}-${pom.version}</finalName>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>true</filtering>
			</resource>
		</resources>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>RELEASE</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.4.2</version>
				<configuration>
					<forkMode>pertest</forkMode>
					<!-- So we dont have to juse xxxTest.java.bak "_" -->
					<!-- 
					<excludes>
						<exclude>**/TestCircle.java</exclude>
						<exclude>**/TestSquare.java</exclude>
					</excludes>
					<includes>
						<include>Sample.java</include>
					</includes>
 					-->
				</configuration>

			</plugin>
		</plugins>
	</build>
</project>
