1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <!-- POM file generated with GWT webAppCreator -->
6 <modelVersion>4.0.0</modelVersion>
7 <groupId>org.glom.web</groupId>
8 <artifactId>gwt-glom</artifactId>
9 <packaging>war</packaging>
10 <version>1.0-SNAPSHOT</version>
11 <name>OnlineGlom</name>
14 <!-- Convenience property to set the GWT version -->
15 <gwtVersion>2.1.1</gwtVersion>
16 <!-- GWT needs at least java 1.5 -->
17 <maven.compiler.source>1.6</maven.compiler.source>
18 <maven.compiler.target>1.6</maven.compiler.target>
19 <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
24 <groupId>com.google.gwt</groupId>
25 <artifactId>gwt-servlet</artifactId>
26 <version>2.1.1</version>
27 <scope>runtime</scope>
30 <groupId>com.google.gwt</groupId>
31 <artifactId>gwt-user</artifactId>
32 <version>2.1.1</version>
33 <scope>provided</scope>
36 <groupId>junit</groupId>
37 <artifactId>junit</artifactId>
38 <version>4.7</version>
42 <groupId>org.glom.libglom</groupId>
43 <artifactId>java-libglom</artifactId>
44 <version>0.1</version>
45 <scope>compile</scope>
49 <url>http://www.glom.org</url>
51 <!-- Generate compiled stuff in the folder used for developing mode -->
52 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
56 <!-- GWT Maven Plugin -->
58 <groupId>org.codehaus.mojo</groupId>
59 <artifactId>gwt-maven-plugin</artifactId>
60 <version>2.1.0-1</version>
67 <goal>generateAsync</goal>
71 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
72 documentation at codehaus.org -->
74 <runTarget>OnlineGlom.html</runTarget>
75 <hostedWebapp>${webappDirectory}</hostedWebapp>
76 <i18nMessagesBundle>org.glom.web.client.Messages</i18nMessagesBundle>
80 <!-- Copy static web files before executing gwt:run -->
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-war-plugin</artifactId>
84 <version>2.1.1</version>
87 <phase>compile</phase>
94 <webappDirectory>${webappDirectory}</webappDirectory>