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.21.10</version>
11 <name>OnlineGlom</name>
16 <distribution>repo and manual</distribution>
17 <url>http://www.gnu.org/licenses/lgpl.html</url>
21 <!-- gwt-test-utils is not in the regular maven repository: -->
24 <id>forge.octo.com</id>
25 <url>http://forge.octo.com/nexus/content/repositories/releases/</url>
30 <!-- Convenience property to set the GWT version -->
31 <gwt.version>2.5.0</gwt.version>
32 <!-- GWT requires java 1.6 -->
33 <!-- TODO: Isn't this a duplicate of the maven-compiler-plugin properties below? -->
34 <maven.compiler.source>1.7</maven.compiler.source>
35 <maven.compiler.target>1.7</maven.compiler.target>
36 <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
41 <groupId>com.google.gwt</groupId>
42 <artifactId>gwt-servlet</artifactId>
43 <version>${gwt.version}</version>
44 <scope>runtime</scope>
47 <groupId>com.google.gwt</groupId>
48 <artifactId>gwt-user</artifactId>
49 <version>${gwt.version}</version>
50 <scope>provided</scope>
53 <groupId>c3p0</groupId>
54 <artifactId>c3p0</artifactId>
55 <version>0.9.1.2</version>
57 <scope>compile</scope>
60 <groupId>commons-io</groupId>
61 <artifactId>commons-io</artifactId>
62 <version>2.3</version>
64 <scope>compile</scope>
67 <groupId>postgresql</groupId>
68 <artifactId>postgresql</artifactId>
69 <version>9.1-901.jdbc4</version>
71 <scope>runtime</scope>
74 <groupId>com.allen-sauer.gwt.log</groupId>
75 <artifactId>gwt-log</artifactId>
76 <version>3.1.8</version>
78 <scope>compile</scope>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>commons-lang3</artifactId>
83 <version>3.1</version>
84 <scope>compile</scope>
87 <groupId>org.apache.httpcomponents</groupId>
88 <artifactId>httpclient</artifactId>
89 <version>4.2.1</version>
92 <groupId>commons-codec</groupId>
93 <artifactId>commons-codec</artifactId>
94 <version>1.4</version>
95 <scope>compile</scope>
98 <groupId>com.google.guava</groupId>
99 <artifactId>guava</artifactId>
100 <version>11.0.2</version>
103 <groupId>org.jooq</groupId>
104 <artifactId>jooq</artifactId>
105 <version>2.3.1</version>
106 <scope>compile</scope>
109 <groupId>net.sf.jasperreports</groupId>
110 <artifactId>jasperreports</artifactId>
111 <version>4.5.1</version>
112 <scope>compile</scope>
114 <!-- There is apparently a clash between the jdtcore used by jasperreports
115 and gwt, so we do this to avoid the reportUnusedDeclaredThrownExceptionIncludeDocCommentReference
116 exception during the gwt compile. -->
118 <groupId>eclipse</groupId>
119 <artifactId>jdtcore</artifactId>
125 <groupId>log4j</groupId>
126 <artifactId>log4j</artifactId>
127 <version>1.2.16</version>
129 <scope>compile</scope> <!-- It is used for runtime and test scopes -->
132 <!-- This seems to be necessary so we can see errors from JDBC -->
134 <groupId>org.slf4j</groupId>
135 <artifactId>slf4j-simple</artifactId>
136 <version>1.6.6</version>
141 <groupId>junit</groupId>
142 <artifactId>junit</artifactId>
143 <version>4.10</version>
147 <groupId>com.googlecode.gwt-test-utils</groupId>
148 <artifactId>gwt-test-utils</artifactId>
149 <version>0.39</version>
153 <groupId>org.easymock</groupId>
154 <artifactId>easymock</artifactId>
155 <version>3.1</version>
160 <url>http://www.glom.org/wiki/index.php?title=Development/OnlineGlom</url>
162 <!-- Generate compiled stuff in the folder used for developing mode -->
163 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
167 <!-- GWT Maven Plugin -->
169 <groupId>org.codehaus.mojo</groupId>
170 <artifactId>gwt-maven-plugin</artifactId>
171 <version>2.5.0</version>
181 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
182 documentation at codehaus.org -->
184 <runTarget>OnlineGlom.html</runTarget>
185 <hostedWebapp>${webappDirectory}</hostedWebapp>
186 <i18nConstantsBundles>
187 <i18nConstantsBundle>org.glom.web.client.ui.OnlineGlomConstants</i18nConstantsBundle>
188 </i18nConstantsBundles>
189 <mode>htmlunit</mode> <!-- Because the default, manual, waits for us to paste a URL into a browser. -->
190 <!-- <productionMode>true</productionMode> -->
194 <!-- Copy static web files before executing gwt:run -->
196 <groupId>org.apache.maven.plugins</groupId>
197 <artifactId>maven-war-plugin</artifactId>
198 <version>2.2</version>
201 <phase>compile</phase>
203 <goal>exploded</goal>
208 <webappDirectory>${webappDirectory}</webappDirectory>
213 <artifactId>maven-assembly-plugin</artifactId>
214 <version>2.3</version>
217 <descriptor>assembly.xml</descriptor>
219 <appendAssemblyId>false</appendAssemblyId>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-compiler-plugin</artifactId>
226 <version>2.5.1</version>
235 <!--This plugin's configuration is used to store Eclipse m2e settings
236 only. It has no influence on the Maven build itself. -->
238 <groupId>org.eclipse.m2e</groupId>
239 <artifactId>lifecycle-mapping</artifactId>
240 <version>1.0.0</version>
242 <lifecycleMappingMetadata>
245 <pluginExecutionFilter>
246 <groupId>org.codehaus.mojo</groupId>
247 <artifactId>gwt-maven-plugin</artifactId>
248 <versionRange>[2.5.0,)</versionRange>
252 </pluginExecutionFilter>
258 <pluginExecutionFilter>
260 org.apache.maven.plugins
269 <goal>exploded</goal>
271 </pluginExecutionFilter>
277 </lifecycleMappingMetadata>
287 <groupId>org.apache.maven.plugins</groupId>
288 <artifactId>maven-surefire-report-plugin</artifactId>
289 <version>2.12</version>
291 <!-- your configuration here -->
297 <description>gwt-glom (OnlineGlom) is a web UI for Glom database systems.
298 See http://www.glom.org
301 <url>http://gitorious.org/online-glom</url>
304 <system>Bugzilla</system>
305 <url>https://bugzilla.gnome.org/browse.cgi?product=Glom</url>