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.4.0</gwt.version>
16 <!-- GWT 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>
35 <!-- Since the java-libglom jar uses jni it can only be loaded once and
36 therefore must not be included in each war. Instead the java-libglom jar
37 must be placed in $CATALINA_HOME/lib. Scope provided ensures that the jar
38 is available for compiling and testing but will not be packaged in the war.
39 More information about this deploying servlets that use jni jars can be found
40 in the "JNI Based Applications" section of the Tomcat 6 release notes:
41 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt -->
43 <groupId>org.glom.libglom</groupId>
44 <artifactId>java-libglom</artifactId>
45 <version>1.19.1</version>
46 <scope>provided</scope>
49 <groupId>c3p0</groupId>
50 <artifactId>c3p0</artifactId>
51 <version>0.9.1.2</version>
53 <scope>compile</scope>
56 <groupId>postgresql</groupId>
57 <artifactId>postgresql</artifactId>
58 <version>8.4-702.jdbc4</version>
60 <scope>runtime</scope>
63 <groupId>com.allen-sauer.gwt.log</groupId>
64 <artifactId>gwt-log</artifactId>
65 <version>3.1.6</version>
67 <scope>compile</scope>
70 <groupId>log4j</groupId>
71 <artifactId>log4j</artifactId>
72 <version>1.2.16</version>
74 <scope>runtime</scope>
78 <url>http://www.glom.org</url>
80 <!-- Generate compiled stuff in the folder used for developing mode -->
81 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
85 <!-- GWT Maven Plugin -->
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>gwt-maven-plugin</artifactId>
89 <version>2.4.0</version>
97 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
98 documentation at codehaus.org -->
100 <runTarget>OnlineGlom.html</runTarget>
101 <hostedWebapp>${webappDirectory}</hostedWebapp>
102 <i18nMessagesBundle>org.glom.web.client.Messages</i18nMessagesBundle>
106 <!-- Copy static web files before executing gwt:run -->
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-war-plugin</artifactId>
110 <version>2.1.1</version>
113 <phase>compile</phase>
115 <goal>exploded</goal>
120 <webappDirectory>${webappDirectory}</webappDirectory>
127 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
129 <groupId>org.eclipse.m2e</groupId>
130 <artifactId>lifecycle-mapping</artifactId>
131 <version>1.0.0</version>
133 <lifecycleMappingMetadata>
136 <pluginExecutionFilter>
138 org.apache.maven.plugins
147 <goal>exploded</goal>
149 </pluginExecutionFilter>
155 </lifecycleMappingMetadata>