<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>
	
	<groupId>org.mobicents.tools</groupId>
	<artifactId>mobicents-tools-mmc</artifactId>
	<packaging>pom</packaging>
	
	<name>Mobicents :: Tools :: gwt-management-console</name>
	
	<parent>
		<groupId>org.mobicents</groupId>
		<artifactId>mobicents-jainslee-server</artifactId>
		<version>1.2.3.GA</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>
	
	<pluginRepositories>
		<pluginRepository>
			<id>gwt-maven-plugins</id>
			<url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
		</pluginRepository>
	</pluginRepositories>
	<repositories>
		<repository>
			<id>java.net</id>
			<url>http://download.java.net/maven/1</url>
			<layout>legacy</layout>
		</repository>
		<repository>
			<id>gwt-maven</id>
			<url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
		</repository>
	</repositories>
	
	<properties>
		<!-- GLOBAL PROPERTIES 
			<jain-slee.version>1.1.draft</jain-slee.version>
			<commons-fileupload.version>1.1</commons-fileupload.version>
		-->
		<!-- JBOSS 
			<jboss.version>4.2.2.GA</jboss.version>
			<node>default</node>	
			<log4j.version>1.2.12</log4j.version>
			<gwt.version>1.4.61</gwt.version>
			
		-->
		<!--  This is not visible ;[ -->
		<gwt.version>1.4.62</gwt.version>
	</properties>
	
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>${pom.groupId}</groupId>
				<artifactId>gwt-management-console-war</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>${pom.groupId}</groupId>
				<artifactId>gwt-management-console-rpc</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>${pom.groupId}</groupId>
				<artifactId>gwt-management-console-server</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>javax.slee</groupId>
				<artifactId>jain-slee</artifactId>
				<version>${jain-slee.version}</version>
				<scope>provided</scope>
			</dependency>
			<dependency>
				<groupId>commons-fileupload</groupId>
				<artifactId>commons-fileupload</artifactId>
				<version>${commons-fileupload.version}</version>

			</dependency>
			<dependency>
				<groupId>jboss</groupId>
				<artifactId>jboss-common</artifactId>
				<version>${jboss.version}</version>
				<scope>provided</scope>
			</dependency>
			<!--  GWT deps -->
			<dependency>
				<groupId>com.google.gwt</groupId>
				<artifactId>gwt-servlet</artifactId>
				<version>${gwt.version}</version>
				<scope>runtime</scope>
			</dependency>
			<dependency>
				<groupId>com.google.gwt</groupId>
				<artifactId>gwt-user</artifactId>
				<version>${gwt.version}</version>
			</dependency>
			<!--
				<dependency> <groupId>com.google.gwt</groupId>
				<artifactId>gwt-dev</artifactId> <version>${gwt.version}</version>
				<classifier>${platform}-libs</classifier> <type>zip</type>
				</dependency>
			-->
			<dependency>
				<groupId>com.google.gwt</groupId>
				<artifactId>gwt-dev</artifactId>
				<version>${gwt.version}</version>
				<classifier>${platform}</classifier>
			</dependency>
		</dependencies>
	</dependencyManagement>
		
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	
	<modules>
		<module>rpc</module>
		<module>server</module>
		<module>war</module>
	</modules>
	
	<profiles>
		<profile>
			<id>gwt-dev-windows</id>
			<properties>
				<platform>windows</platform>
			</properties>
			<activation>
				<os>
					<family>windows</family>
				</os>
			</activation>
		</profile>
		<profile>
			<id>gwt-dev-mac</id>
			<properties>
				<platform>mac</platform>
			</properties>
			<activation>
				<os>
					<family>mac</family>
				</os>
			</activation>
		</profile>
		<profile>
			<id>gwt-dev-linux</id>
			<properties>
				<platform>linux</platform>
			</properties>
			<activation>
				<os>
					<name>linux</name>
				</os>
			</activation>
		</profile>
	</profiles>
</project>