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>compile</scope> <!-- It is used for runtime and test scopes -->
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.4</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>xml-apis</groupId>
75 <artifactId>xml-apis</artifactId>
76 <version>2.0.2</version>
77 <scope>compile</scope>
80 <groupId>com.allen-sauer.gwt.log</groupId>
81 <artifactId>gwt-log</artifactId>
82 <version>3.1.8</version>
84 <scope>compile</scope>
87 <groupId>org.apache.commons</groupId>
88 <artifactId>commons-lang3</artifactId>
89 <version>3.1</version>
90 <scope>compile</scope>
93 <groupId>org.apache.httpcomponents</groupId>
94 <artifactId>httpclient</artifactId>
95 <version>4.2.2</version>
98 <groupId>commons-codec</groupId>
99 <artifactId>commons-codec</artifactId>
100 <version>1.7</version>
101 <scope>compile</scope>
104 <groupId>com.google.guava</groupId>
105 <artifactId>guava</artifactId>
106 <version>13.0.1</version>
109 <groupId>org.jooq</groupId>
110 <artifactId>jooq</artifactId>
111 <version>2.6.0</version>
112 <scope>compile</scope>
115 <groupId>net.sf.jasperreports</groupId>
116 <artifactId>jasperreports</artifactId>
117 <version>4.8.0</version>
118 <scope>compile</scope>
120 <!-- There is apparently a clash between the jdtcore used by jasperreports
121 and gwt, so we do this to avoid the reportUnusedDeclaredThrownExceptionIncludeDocCommentReference
122 exception during the gwt compile. -->
124 <groupId>eclipse</groupId>
125 <artifactId>jdtcore</artifactId>
131 <groupId>log4j</groupId>
132 <artifactId>log4j</artifactId>
133 <version>1.2.17</version>
135 <scope>compile</scope> <!-- It is used for runtime and test scopes -->
138 <!-- This seems to be necessary so we can see errors from JDBC -->
140 <groupId>org.slf4j</groupId>
141 <artifactId>slf4j-simple</artifactId>
142 <version>1.7.2</version>
147 <groupId>junit</groupId>
148 <artifactId>junit</artifactId>
149 <version>4.11</version>
153 <groupId>org.hamcrest</groupId>
154 <artifactId>hamcrest-core</artifactId>
155 <version>1.3</version>
159 <groupId>com.googlecode.gwt-test-utils</groupId>
160 <artifactId>gwt-test-utils</artifactId>
161 <version>0.43</version>
165 <groupId>org.easymock</groupId>
166 <artifactId>easymock</artifactId>
167 <version>3.1</version>
172 <url>http://www.glom.org/wiki/index.php?title=Development/OnlineGlom</url>
174 <!-- Generate compiled stuff in the folder used for developing mode -->
175 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
179 <!-- GWT Maven Plugin -->
181 <groupId>org.codehaus.mojo</groupId>
182 <artifactId>gwt-maven-plugin</artifactId>
183 <version>2.5.0</version>
193 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
194 documentation at codehaus.org -->
196 <runTarget>OnlineGlom.html</runTarget>
197 <hostedWebapp>${webappDirectory}</hostedWebapp>
198 <i18nConstantsBundles>
199 <i18nConstantsBundle>org.glom.web.client.ui.OnlineGlomConstants</i18nConstantsBundle>
200 </i18nConstantsBundles>
201 <mode>htmlunit</mode> <!-- Because the default, manual, waits for us to paste a URL into a browser. -->
202 <!-- <productionMode>true</productionMode> -->
206 <!-- Copy static web files before executing gwt:run -->
208 <groupId>org.apache.maven.plugins</groupId>
209 <artifactId>maven-war-plugin</artifactId>
210 <version>2.2</version>
213 <phase>compile</phase>
215 <goal>exploded</goal>
220 <webappDirectory>${webappDirectory}</webappDirectory>
225 <artifactId>maven-assembly-plugin</artifactId>
226 <version>2.3</version>
229 <descriptor>assembly.xml</descriptor>
231 <appendAssemblyId>false</appendAssemblyId>
236 <groupId>org.apache.maven.plugins</groupId>
237 <artifactId>maven-compiler-plugin</artifactId>
238 <version>2.5.1</version>
246 mvn dependency:analyze-report
247 to generate target/dependency-analysis.html
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-dependency-plugin</artifactId>
252 <version>2.4</version>
256 <phase>package</phase>
263 <!--This plugin's configuration is used to store Eclipse m2e settings
264 only. It has no influence on the Maven build itself. -->
266 <groupId>org.eclipse.m2e</groupId>
267 <artifactId>lifecycle-mapping</artifactId>
268 <version>1.0.0</version>
270 <lifecycleMappingMetadata>
273 <pluginExecutionFilter>
274 <groupId>org.codehaus.mojo</groupId>
275 <artifactId>gwt-maven-plugin</artifactId>
276 <versionRange>[2.5.0,)</versionRange>
280 </pluginExecutionFilter>
286 <pluginExecutionFilter>
288 org.apache.maven.plugins
297 <goal>exploded</goal>
299 </pluginExecutionFilter>
305 </lifecycleMappingMetadata>
315 <groupId>org.apache.maven.plugins</groupId>
316 <artifactId>maven-surefire-report-plugin</artifactId>
317 <version>2.12</version>
319 <!-- your configuration here -->
326 <description>gwt-glom (OnlineGlom) is a web UI for Glom database systems.
327 See http://www.glom.org
330 <url>http://gitorious.org/online-glom</url>
333 <system>Bugzilla</system>
334 <url>https://bugzilla.gnome.org/browse.cgi?product=Glom</url>