<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.servlet.sip.example</groupId>
		<artifactId>sip-servlets-examples-parent</artifactId>
		<version>1.2</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	<artifactId>shootist-sip-servlet-distributable</artifactId>
	<packaging>war</packaging>
	<name>Shootist Sip Servlet Distributable Example</name>
	<build>
		<outputDirectory>${basedir}/src/main/sipapp/WEB-INF/classes</outputDirectory>
		<resources>	
	      <resource>
	        <directory>${basedir}/src/main/sipapp/</directory>
	        <filtering>true</filtering>
	        <targetPath>../../../../../target/filtered-sources/</targetPath>	        
	      </resource>
	    </resources>
		<plugins>
			<plugin>
				<artifactId>maven-war-plugin</artifactId>
				<configuration>
					<webXml>
						${basedir}/src/main/sipapp/WEB-INF/web.xml
					</webXml>
					<warSourceDirectory>
						${basedir}/target/filtered-sources/
					</warSourceDirectory>
				</configuration>
			</plugin>
		</plugins>
	</build>	
</project>