<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>mgcp-demo-parent</artifactId>
        <groupId>org.mobicents.examples</groupId>
        <version>1.2.0.BETA3</version>
    </parent>
    
    <artifactId>call-sbb</artifactId>
    <groupId>org.mobicents.examples</groupId>
    <version>1.2.0.BETA3</version>
    
    <name>MGCP :: ${pom.artifactId}</name>
    
    <dependencies>
        <dependency>	
            <artifactId>mgcp-ratype</artifactId>
            <groupId>org.mobicents.resources</groupId>
            <version>1.2.0.BETA3</version>
        </dependency>	
        
        <dependency>
            <groupId>org.mobicents.resources</groupId>
            <artifactId>sip-ra</artifactId>
            <version>${pom.version}</version>
        </dependency>
    </dependencies>	  
    
    <build>
        <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>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>RELEASE</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    
</project>