<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.4.0.FINAL</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	<groupId>org.mobicents.servlet.sip.example</groupId>
	<artifactId>diameter-event-charging</artifactId>
	<packaging>war</packaging>
	<version>1.4.0.FINAL</version>
	<name>Diameter Event Charging Sip Servlet Example</name>
	<dependencies>
    <dependency>
      <groupId>org.mobicents.servers.diameter</groupId>
      <artifactId>jdiameter-api</artifactId>
      <version>1.5.4.0-build402</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mobicents.servers.diameter</groupId>
      <artifactId>mobicents-diameter-mux-jar</artifactId>
      <version>1.3.1.FINAL</version>
      <scope>provided</scope>
    </dependency>    
    <dependency>
		  <groupId>jboss</groupId>
		  <artifactId>jboss-system</artifactId>
		  <version>${jboss.version}</version>
		  <scope>provided</scope>
    </dependency>    
    <dependency>
		  <groupId>jboss</groupId>
		  <artifactId>jboss-jmx</artifactId>
		  <version>${jboss.version}</version>
		  <scope>provided</scope>
    </dependency>    
	</dependencies>
	<url>http://www.mobicents.org/diameter_event_charging.html</url>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-war-plugin</artifactId>
				<configuration>
					<warSourceDirectory>
						${basedir}/src/main/sipapp
					</warSourceDirectory>
				</configuration>
			</plugin>
		</plugins>		
	</build>

	<!-- repositories -->
	<repositories>
		<repository>
			<id>maven2-repository.dev.java.net</id>
			<name>Java.net Repository for Maven</name>
			<url>http://download.java.net/maven/2/</url>
			<layout>default</layout>
		</repository>
		<repository>			
			<id>JbossRepository</id>
			<name>Jboss Repository</name>
			<url>http://repository.jboss.org/maven2</url>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
			<releases>
				<enabled>true</enabled>
			</releases>
		</repository>
		<repository>
			<id>jboss-snapshots</id>
			<name>JBoss Snapshot Repository</name>
			<url>http://snapshots.jboss.org/maven2</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
	</repositories>
</project>
