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 <gwt.version>2.2.0</gwt.version>
16 <!-- GWT 2.2.0 requires java 1.6 -->
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>${gwt.version}</version>
27 <scope>runtime</scope>
30 <groupId>com.google.gwt</groupId>
31 <artifactId>gwt-user</artifactId>
32 <version>${gwt.version}</version>
33 <scope>provided</scope>
36 <groupId>org.glom.libglom</groupId>
37 <artifactId>java-libglom</artifactId>
38 <version>0.1</version>
39 <scope>compile</scope>
42 <groupId>c3p0</groupId>
43 <artifactId>c3p0</artifactId>
44 <version>0.9.1.2</version>
46 <scope>compile</scope>
49 <groupId>postgresql</groupId>
50 <artifactId>postgresql</artifactId>
51 <version>8.4-702.jdbc4</version>
53 <scope>runtime</scope>
57 <url>http://www.glom.org</url>
59 <!-- Generate compiled stuff in the folder used for developing mode -->
60 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
64 <!-- GWT Maven Plugin -->
66 <groupId>org.codehaus.mojo</groupId>
67 <artifactId>gwt-maven-plugin</artifactId>
68 <version>2.2.0</version>
76 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
77 documentation at codehaus.org -->
79 <runTarget>OnlineGlom.html</runTarget>
80 <hostedWebapp>${webappDirectory}</hostedWebapp>
81 <i18nMessagesBundle>org.glom.web.client.Messages</i18nMessagesBundle>
85 <!-- Copy static web files before executing gwt:run -->
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-war-plugin</artifactId>
89 <version>2.1.1</version>
92 <phase>compile</phase>
99 <webappDirectory>${webappDirectory}</webappDirectory>