Author: norman
Date: Sat Aug 29 17:51:49 2009
New Revision: 809177
URL: http://svn.apache.org/viewvc?rev=809177&view=rev
Log:
Start to refactor for multimodule project
Added:
labs/hupa/client/pom.xml
Added: labs/hupa/client/pom.xml
URL: http://svn.apache.org/viewvc/labs/hupa/client/pom.xml?rev=809177&view=auto
==============================================================================
--- labs/hupa/client/pom.xml (added)
+++ labs/hupa/client/pom.xml Sat Aug 29 17:51:49 2009
@@ -0,0 +1,131 @@
+<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.apache.hupa</groupId>
+ <artifactId>hupa-client</artifactId>
+ <name>hupa</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>war</packaging>
+
+<parent>
+ <groupId>org.apache.hupa</groupId>
+ <artifactId>hupa</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <build>
+ <outputDirectory>war/WEB-INF/classes</outputDirectory>
+ <plugins>
+
+ <!-- configure the GWT-Maven plugin -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>gwt-maven-plugin</artifactId>
+ <version>1.1</version>
+ <configuration>
+ <!--
+ <module>org.apache.hupa.Hupa</module>
+ -->
+
<runTarget>org.apache.hupa.Hupa/Hupa.html</runTarget>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <!--
+ If you want to use the target/web.xml file
mergewebxml produces,
+ tell the war plugin to use it. Also, exclude
what you want from the
+ final artifact here.
+ -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+ <!--
+ <warSourceDirectory>war</warSourceDirectory>
+ -->
+ <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
+ <webResources>
+ <resource>
+ <directory>war</directory>
+ <excludes>
+
<exclude>**/hupa/*</exclude>
+ </excludes>
+ </resource>
+ </webResources>
+ <warName>${project.name}</warName>
+ </configuration>
+ <!--
+ <configuration>
+ <webResources>
+
+ <resource>
+ <directory>war</directory>
+ <excludes>
+
<exclude>**/hupa/*</exclude>
+ </excludes>
+ </resource>
+ </webResources>
+ </configuration>
+ -->
+ </plugin>
+ </plugins>
+ </build>
+
+
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.hupa</groupId>
+ <artifactId>hupa-server</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hupa</groupId>
+ <artifactId>hupa-shared</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.cobogw.gwt</groupId>
+ <artifactId>cobogw</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.customware.gwt.dispatch</groupId>
+ <artifactId>gwt-dispatch</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.customware.gwt.presenter</groupId>
+ <artifactId>gwt-presenter</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-incubator</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.gwt-dnd</groupId>
+ <artifactId>gwt-dnd</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>eu.maydu.gwt</groupId>
+ <artifactId>gwt-vl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>gwtupload</groupId>
+ <artifactId>gwtupload</artifactId>
+ </dependency>
+ <!-- GWT deps (from central repo) -->
+ <dependency>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-servlet</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-user</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]