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>
48 <groupId>c3p0</groupId>
49 <artifactId>c3p0</artifactId>
50 <version>0.9.1.2</version>
52 <scope>compile</scope>
55 <groupId>postgresql</groupId>
56 <artifactId>postgresql</artifactId>
57 <version>8.4-702.jdbc4</version>
59 <scope>runtime</scope>
63 <url>http://www.glom.org</url>
65 <!-- Generate compiled stuff in the folder used for developing mode -->
66 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
70 <!-- GWT Maven Plugin -->
72 <groupId>org.codehaus.mojo</groupId>
73 <artifactId>gwt-maven-plugin</artifactId>
74 <version>2.1.0-1</version>
84 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
85 documentation at codehaus.org -->
87 <runTarget>OnlineGlom.html</runTarget>
88 <hostedWebapp>${webappDirectory}</hostedWebapp>
89 <i18nMessagesBundle>org.glom.web.client.Messages</i18nMessagesBundle>
93 <!-- Copy static web files before executing gwt:run -->
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-war-plugin</artifactId>
97 <version>2.1.1</version>
100 <phase>compile</phase>
102 <goal>exploded</goal>
107 <webappDirectory>${webappDirectory}</webappDirectory>