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>
13 <!-- gwt-test-utils is not in the regular maven repository: -->
16 <id>forge.octo.com</id>
17 <url>http://forge.octo.com/nexus/content/repositories/releases/</url>
22 <!-- Convenience property to set the GWT version -->
23 <gwt.version>2.4.0</gwt.version>
24 <!-- GWT requires java 1.6 -->
25 <maven.compiler.source>1.6</maven.compiler.source>
26 <maven.compiler.target>1.6</maven.compiler.target>
27 <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
32 <groupId>com.google.gwt</groupId>
33 <artifactId>gwt-servlet</artifactId>
34 <version>${gwt.version}</version>
35 <scope>runtime</scope>
38 <groupId>com.google.gwt</groupId>
39 <artifactId>gwt-user</artifactId>
40 <version>${gwt.version}</version>
41 <scope>provided</scope>
43 <!-- Since the java-libglom jar uses jni it can only be loaded once and
44 therefore must not be included in each war. Instead the java-libglom jar
45 must be placed in $CATALINA_HOME/lib. Scope provided ensures that the jar
46 is available for compiling and testing but will not be packaged in the war.
47 More information about this deploying servlets that use jni jars can be found
48 in the "JNI Based Applications" section of the Tomcat release notes:
49 http://tomcat.apache.org/tomcat-7.0-doc/RELEASE-NOTES.txt -->
51 <groupId>org.glom.libglom</groupId>
52 <artifactId>java-libglom</artifactId>
53 <version>1.19.1</version>
54 <scope>provided</scope>
57 <groupId>c3p0</groupId>
58 <artifactId>c3p0</artifactId>
59 <version>0.9.1.2</version>
61 <scope>compile</scope>
64 <groupId>postgresql</groupId>
65 <artifactId>postgresql</artifactId>
66 <version>8.4-702.jdbc4</version>
68 <scope>runtime</scope>
71 <groupId>com.allen-sauer.gwt.log</groupId>
72 <artifactId>gwt-log</artifactId>
73 <version>3.1.6</version>
75 <scope>compile</scope>
78 <groupId>log4j</groupId>
79 <artifactId>log4j</artifactId>
80 <version>1.2.16</version>
82 <scope>runtime</scope>
85 <groupId>junit</groupId>
86 <artifactId>junit</artifactId>
87 <version>4.10</version>
91 <groupId>com.octo.gwt.test</groupId>
92 <artifactId>gwt-test-utils</artifactId>
93 <version>0.34</version>
97 <groupId>org.easymock</groupId>
98 <artifactId>easymock</artifactId>
99 <version>3.0</version>
104 <url>http://www.glom.org</url>
106 <!-- Generate compiled stuff in the folder used for developing mode -->
107 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
111 <!-- GWT Maven Plugin -->
113 <groupId>org.codehaus.mojo</groupId>
114 <artifactId>gwt-maven-plugin</artifactId>
115 <version>2.4.0</version>
124 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
125 documentation at codehaus.org -->
127 <runTarget>OnlineGlom.html</runTarget>
128 <hostedWebapp>${webappDirectory}</hostedWebapp>
129 <i18nMessagesBundle>org.glom.web.client.Messages</i18nMessagesBundle>
133 <!-- Copy static web files before executing gwt:run -->
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-war-plugin</artifactId>
137 <version>2.1.1</version>
140 <phase>compile</phase>
142 <goal>exploded</goal>
147 <webappDirectory>${webappDirectory}</webappDirectory>
154 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
156 <groupId>org.eclipse.m2e</groupId>
157 <artifactId>lifecycle-mapping</artifactId>
158 <version>1.0.0</version>
160 <lifecycleMappingMetadata>
163 <pluginExecutionFilter>
165 org.apache.maven.plugins
174 <goal>exploded</goal>
176 </pluginExecutionFilter>
182 </lifecycleMappingMetadata>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-surefire-report-plugin</artifactId>
194 <version>2.0</version>
196 <!-- your configuration here -->