<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>call-controller2-example-parent</artifactId>
		<groupId>org.mobicents.examples</groupId>
		<version>2.1.2.FINAL</version>
	</parent>

	<artifactId>call-controller2-sbbs</artifactId>
	<name>Mobicents Examples :: ${pom.artifactId}</name>

	<dependencies>
		<dependency>
			<artifactId>sip-services-location-sbb</artifactId>
			<groupId>org.mobicents.examples</groupId>
		</dependency>
		<dependency>
			<groupId>${pom.groupId}</groupId>
			<artifactId>call-controller2-profile</artifactId>
		</dependency>
		<dependency>
			<groupId>org.mobicents.resources</groupId>
			<artifactId>sip11-ratype</artifactId>
		</dependency>
		<dependency>
			<groupId>org.mobicents.resources</groupId>
			<artifactId>mgcp-ratype</artifactId>
		</dependency>
	</dependencies>
	<build>
		<filters>
			<filter>${basedir}/../example.properties</filter>
		</filters>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>true</filtering>
				<excludes>
					<exclude>org/**</exclude>
				</excludes>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
				<includes>
					<include>org/**</include>
				</includes>
			</resource>
		</resources>
	</build>
</project>