<!-- ~ JBoss, Home of Professional Open Source ~ Copyright 2011 Red Hat Inc. 
	and/or its affiliates and other contributors ~ as indicated by the @author 
	tags. All rights reserved. ~ See the copyright.txt in the distribution for 
	a ~ full listing of individual contributors. ~ ~ This copyrighted material 
	is made available to anyone wishing to use, ~ modify, copy, or redistribute 
	it subject to the terms and conditions ~ of the GNU Lesser General Public 
	License, v. 2.1. ~ This program is distributed in the hope that it will be 
	useful, but WITHOUT A ~ WARRANTY; without even the implied warranty of MERCHANTABILITY 
	or FITNESS FOR A ~ PARTICULAR PURPOSE. See the GNU Lesser General Public 
	License for more details. ~ You should have received a copy of the GNU Lesser 
	General Public License, ~ v.2.1 along with this distribution; if not, write 
	to the Free Software ~ Foundation, Inc., 51 Franklin Street, Fifth Floor, 
	Boston, ~ MA 02110-1301, USA. -->

<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">

	<parent>
		<groupId>org.switchyard</groupId>
		<artifactId>switchyard-parent</artifactId>
		<version>0.2.0</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>
	<groupId>org.switchyard</groupId>
	<artifactId>switchyard-console-parent</artifactId>
	<version>0.2.0</version>
	<packaging>pom</packaging>
	<name>SwitchYard: Console</name>
	<description>SwitchYard Management Console</description>

	<properties>
		<gwt.version>2.2.0</gwt.version>
		<gwt.maven>2.2.0</gwt.maven>
		<gwt-log.version>3.1.0</gwt-log.version>
		<gin.version>1.0_r170</gin.version>
		<guice.version>3.0-rc2</guice.version>
		<gwtp.version>0.6-2.17</gwtp.version>
		<htmlunit.version>2.8</htmlunit.version>
		<version.project>${project.version}</version.project>
	</properties>

	<dependencyManagement>
		<dependencies>

			<!-- GWT related -->
			<dependency>
				<groupId>com.google.gwt</groupId>
				<artifactId>gwt-servlet</artifactId>
				<version>${gwt.version}</version>
			</dependency>

			<dependency>
				<groupId>com.google.gwt</groupId>
				<artifactId>gwt-dev</artifactId>
				<version>${gwt.version}</version>
			</dependency>

			<dependency>
				<groupId>com.google.gwt</groupId>
				<artifactId>gwt-user</artifactId>
				<version>${gwt.version}</version>
			</dependency>

			<dependency>
				<groupId>com.google.code.gwt-log</groupId>
				<artifactId>gwt-log</artifactId>
				<version>${gwt-log.version}</version>
			</dependency>

			<dependency>
				<groupId>com.gwtplatform</groupId>
				<artifactId>gwtp-all</artifactId>
				<version>${gwtp.version}</version>
				<exclusions>
					<exclusion>
						<groupId>org.springframework</groupId>
						<artifactId>spring-core</artifactId>
					</exclusion>
					<exclusion>
						<groupId>org.springframework</groupId>
						<artifactId>spring-context</artifactId>
					</exclusion>
					<exclusion>
						<groupId>org.springframework</groupId>
						<artifactId>spring-beans</artifactId>
					</exclusion>
					<exclusion>
						<groupId>org.springframework</groupId>
						<artifactId>spring-web</artifactId>
					</exclusion>
					<exclusion>
						<groupId>net.sourceforge.htmlunit</groupId>
						<artifactId>crawl_htmlunit</artifactId>
					</exclusion>
				</exclusions>
			</dependency>

			<dependency>
				<groupId>com.google.inject</groupId>
				<artifactId>guice</artifactId>
				<version>${guice.version}</version>
			</dependency>

			<dependency>
				<groupId>com.google.gwt.inject</groupId>
				<artifactId>gin</artifactId>
				<version>${gin.version}</version>
			</dependency>

			<dependency>
				<groupId>com.mycila.com.google.inject.extensions</groupId>
				<artifactId>guice-assisted-inject</artifactId>
				<version>3.0-20100927</version>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.1-beta-1</version>
			</plugin>
		</plugins>

	</build>
	<modules>
		<module>gwt</module>
	</modules>

</project>
