<?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>
	
	<parent>
		<groupId>org.mobicents.servers.media</groupId>
		<artifactId>mobicents-media-server-core</artifactId>
		<version>1.0.0.BETA3</version>
	</parent>
	
	<artifactId>mobicents-media-server-impl</artifactId>
	
	<name>Mobicents Media Server :: ${pom.artifactId}</name>
	
	<properties>
		<!-- If setting maven.test.skip to false, please set correct value for property test.audio.file at end of this file-->
		<maven.test.skip>true</maven.test.skip>
	</properties>
	
	<dependencies>
		<dependency>
			<groupId>${pom.groupId}</groupId>
			<artifactId>mobicents-media-server-spi</artifactId>
			<version>${pom.version}</version>
		</dependency>
		<dependency>
			<groupId>concurrent</groupId>
			<artifactId>concurrent</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-system</artifactId>            
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-common</artifactId>            
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-jmx</artifactId>            
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>            
			<scope>provided</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>	
	</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>
					<systemProperties>
						<property>
							<name>test.audio.file</name>
							<value>file://home/abhayani/workarea/mobicents/svn/trunk/servers/media/core/server-impl/target/test-classes/org/mobicents/media/server/impl/dtmf-0.wav</value>
						</property>
					</systemProperties>
				</configuration>
      			</plugin>			
		</plugins>
	</build> 	
	
</project>
