[jboss-cvs] Picketlink SVN: r1476 - in console/trunk: gui and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Mar 3 01:10:17 EST 2012


Author: pcraveiro
Date: 2012-03-03 01:10:17 -0500 (Sat, 03 Mar 2012)
New Revision: 1476

Added:
   console/trunk/gui/
   console/trunk/gui/pom.xml
Log:
Initial commit.

Added: console/trunk/gui/pom.xml
===================================================================
--- console/trunk/gui/pom.xml	                        (rev 0)
+++ console/trunk/gui/pom.xml	2012-03-03 06:10:17 UTC (rev 1476)
@@ -0,0 +1,135 @@
+<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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.picketlink</groupId>
+		<artifactId>picketlink-console-parent</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+
+	<artifactId>picketlink-console</artifactId>
+	<packaging>war</packaging>
+	
+	<name>PicketLink Console</name>
+	<description>PicketLink Console is the Console for PicketLink</description>
+	
+	<dependencies>
+		<!-- GWT Common Dependencies -->
+		<dependency>
+			<groupId>com.google.gwt</groupId>
+			<artifactId>gwt-user</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>com.google.gwt</groupId>
+			<artifactId>gwt-servlet</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+		<!-- GWTP Dependencies -->
+		<dependency>
+			<groupId>com.gwtplatform</groupId>
+			<artifactId>gwtp-mvp-client</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>com.gwtplatform</groupId>
+			<artifactId>gwtp-dispatch-server</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>com.gwtplatform</groupId>
+			<artifactId>gwtp-dispatch-server-guice</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>com.gwtplatform</groupId>
+			<artifactId>gwtp-dispatch-client</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+
+		<!-- GWT DI Dependencies -->
+		<dependency>
+			<groupId>com.google.inject</groupId>
+			<artifactId>guice</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>com.google.inject.extensions</groupId>
+			<artifactId>guice-servlet</artifactId>
+		</dependency>
+		
+		<dependency>
+			<groupId>com.google.inject.extensions</groupId>
+			<artifactId>guice-persist</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>com.google.gwt.inject</groupId>
+			<artifactId>gin</artifactId>
+		</dependency>
+
+		<!-- JBoss Ballroom Dependencies -->
+		<dependency>
+			<groupId>org.jboss.ballroom</groupId>
+			<artifactId>widgets</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.hibernate</groupId>
+			<artifactId>hibernate-entitymanager</artifactId>
+			<version>3.4.0.GA</version>
+		</dependency>
+		<dependency>
+			<groupId>hsqldb</groupId>
+			<artifactId>hsqldb</artifactId>
+			<version>1.8.0.7</version>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-log4j12</artifactId>
+			<version>1.4.2</version>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>gwt-maven-plugin</artifactId>
+				<version>2.3.0</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>compile</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<inplace>true</inplace>
+					<logLevel>TRACE</logLevel>
+					<runTarget>PicketLinkConsole.html</runTarget>
+					<warSourceDirectory>war</warSourceDirectory>
+					<!--bindAddress>192.168.0.12</bindAddress -->
+					<extraJvmArgs>-Xmx512m -DDEBUG</extraJvmArgs>
+					<servicePattern>**/*Service.java</servicePattern>
+					<soyc>false</soyc>
+					<style>OBF</style>
+					<hostedWebapp>war</hostedWebapp>
+					<localWorkers>2</localWorkers>
+				</configuration>
+			</plugin>
+			<plugin>
+				<artifactId>maven-war-plugin</artifactId>
+				<version>2.1.1</version>
+				<configuration>
+					<warSourceDirectory>src/main/webapp</warSourceDirectory>
+					<webappDirectory>war</webappDirectory>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+</project>
\ No newline at end of file



More information about the jboss-cvs-commits mailing list