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.9.3</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-rc1</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>com.google.guava</groupId>
88 <artifactId>guava</artifactId>
89 <version>11.0.2</version>
92 <groupId>org.jooq</groupId>
93 <artifactId>jooq</artifactId>
94 <version>2.3.1</version>
95 <scope>compile</scope>
98 <groupId>net.sf.jasperreports</groupId>
99 <artifactId>jasperreports</artifactId>
100 <version>4.5.1</version>
101 <scope>compile</scope>
103 <!-- There is apparently a clash between the jdtcore used by jasperreports
104 and gwt, so we do this to avoid the reportUnusedDeclaredThrownExceptionIncludeDocCommentReference
105 exception during the gwt compile. -->
107 <groupId>eclipse</groupId>
108 <artifactId>jdtcore</artifactId>
114 <groupId>log4j</groupId>
115 <artifactId>log4j</artifactId>
116 <version>1.2.16</version>
118 <scope>compile</scope> <!-- It is used for runtime and test scopes -->
121 <!-- This seems to be necessary so we can see errors from JDBC -->
123 <groupId>org.slf4j</groupId>
124 <artifactId>slf4j-simple</artifactId>
125 <version>1.6.6</version>
130 <groupId>junit</groupId>
131 <artifactId>junit</artifactId>
132 <version>4.10</version>
136 <groupId>com.googlecode.gwt-test-utils</groupId>
137 <artifactId>gwt-test-utils</artifactId>
138 <version>0.39</version>
142 <groupId>org.easymock</groupId>
143 <artifactId>easymock</artifactId>
144 <version>3.1</version>
149 <url>http://www.glom.org/wiki/index.php?title=Development/OnlineGlom</url>
151 <!-- Generate compiled stuff in the folder used for developing mode -->
152 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
156 <!-- GWT Maven Plugin -->
158 <groupId>org.codehaus.mojo</groupId>
159 <artifactId>gwt-maven-plugin</artifactId>
160 <version>2.4.0</version>
170 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
171 documentation at codehaus.org -->
173 <runTarget>OnlineGlom.html</runTarget>
174 <hostedWebapp>${webappDirectory}</hostedWebapp>
175 <i18nConstantsBundles>
176 <i18nConstantsBundle>org.glom.web.client.ui.OnlineGlomConstants</i18nConstantsBundle>
177 </i18nConstantsBundles>
178 <mode>htmlunit</mode> <!-- Because the default, manual, waits for us to paste a URL into a browser. -->
179 <!-- <productionMode>true</productionMode> -->
183 <!-- Copy static web files before executing gwt:run -->
185 <groupId>org.apache.maven.plugins</groupId>
186 <artifactId>maven-war-plugin</artifactId>
187 <version>2.2</version>
190 <phase>compile</phase>
192 <goal>exploded</goal>
197 <webappDirectory>${webappDirectory}</webappDirectory>
202 <artifactId>maven-assembly-plugin</artifactId>
203 <version>2.3</version>
206 <descriptor>assembly.xml</descriptor>
208 <appendAssemblyId>false</appendAssemblyId>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-compiler-plugin</artifactId>
215 <version>2.3.2</version>
224 <!--This plugin's configuration is used to store Eclipse m2e settings
225 only. It has no influence on the Maven build itself. -->
227 <groupId>org.eclipse.m2e</groupId>
228 <artifactId>lifecycle-mapping</artifactId>
229 <version>1.0.0</version>
231 <lifecycleMappingMetadata>
234 <pluginExecutionFilter>
235 <groupId>org.codehaus.mojo</groupId>
236 <artifactId>gwt-maven-plugin</artifactId>
237 <versionRange>[2.4.0,)</versionRange>
241 </pluginExecutionFilter>
247 <pluginExecutionFilter>
249 org.apache.maven.plugins
258 <goal>exploded</goal>
260 </pluginExecutionFilter>
266 </lifecycleMappingMetadata>
276 <groupId>org.apache.maven.plugins</groupId>
277 <artifactId>maven-surefire-report-plugin</artifactId>
278 <version>2.12</version>
280 <!-- your configuration here -->
286 <description>gwt-glom (OnlineGlom) is a web UI for Glom database systems.
287 See http://www.glom.org
290 <url>http://gitorious.org/online-glom</url>
293 <system>Bugzilla</system>
294 <url>https://bugzilla.gnome.org/browse.cgi?product=Glom</url>