<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.2.GA</version>
	</parent>

	<artifactId>mobicents-media-server-examples-parent</artifactId>
	<groupId>org.mobicents.servers.media.examples</groupId>
	<version>1.0.2.GA</version>

	<packaging>pom</packaging>

	<name>Mobicents Media Server Examples :: ${pom.artifactId}</name>

	<properties>
		<mobicents.media.server.controllers.version>
			1.0.2.GA
		</mobicents.media.server.controllers.version>
	</properties>

	<modules>
		<module>mgcp-demo</module>
		<module>mms-demo</module>
		<module>call-controller2</module>
		<module>converged-demo</module>
  </modules>

	<!-- RELEASE STUFF -->

	<profiles>
		<profile>
			<id>maven-release</id>
			<modules>
				<module>mgcp-demo</module>
				<module>mms-demo</module>
				<module>call-controller2</module>
				<module>converged-demo</module>
			</modules>
		</profile>
	</profiles>

	<scm>
		<connection>scm:svn:https://mobicents.googlecode.com/svn/tags/servers/media/examples/mobicents-media-server-examples-1.0.2.GA</connection>
		<developerConnection>scm:svn:https://mobicents.googlecode.com/svn/tags/servers/media/examples/mobicents-media-server-examples-1.0.2.GA</developerConnection>
		<url>http://mobicents.googlecode.com/svn/tags/servers/media/examples/mobicents-media-server-examples-1.0.2.GA</url>
	</scm>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-eclipse-plugin</artifactId>
				<groupId>org.mobicents.tools</groupId>
				<version>
					${mobicents.tools.mavenplugin.eclipse.version}
				</version>
				<inherited>false</inherited>
				<executions />
				<configuration>
					<classpathExcludes>
						<exclude>xml-apis:xml-apis</exclude>
						<exclude>jtidy:jtidy</exclude>
					</classpathExcludes>
					<resolveTransitiveDependencies>
						true
					</resolveTransitiveDependencies>
					<eclipseProjectName>
						mobicents-media-server-examples
					</eclipseProjectName>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<configuration>
					<autoVersionSubmodules>true</autoVersionSubmodules>
					<resume>false</resume>
					<preparationGoals>clean install</preparationGoals>
					<tagBase>
						https://mobicents.googlecode.com/svn/tags/servers/media/examples
					</tagBase>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<repositories>
		<repository>
			<id>jboss</id>
			<name>JBoss Repository</name>
			<url>http://repository.jboss.org/maven2</url>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</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>