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.23.1</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 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32 <!-- Convenience property to set the GWT version -->
33 <gwt.version>2.5.0</gwt.version>
35 <!-- GWT requires java 1.6 -->
36 <!-- TODO: Isn't this a duplicate of the maven-compiler-plugin properties below? -->
37 <maven.compiler.source>1.7</maven.compiler.source>
38 <maven.compiler.target>1.7</maven.compiler.target>
40 <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
45 <groupId>com.google.gwt</groupId>
46 <artifactId>gwt-servlet</artifactId>
47 <version>${gwt.version}</version>
48 <scope>compile</scope> <!-- It is used for runtime and test scopes -->
51 <groupId>com.google.gwt</groupId>
52 <artifactId>gwt-user</artifactId>
53 <version>${gwt.version}</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>commons-io</groupId>
65 <artifactId>commons-io</artifactId>
66 <version>2.4</version>
68 <scope>compile</scope>
71 <groupId>postgresql</groupId>
72 <artifactId>postgresql</artifactId>
73 <version>9.1-901.jdbc4</version>
75 <scope>runtime</scope>
78 <groupId>xml-apis</groupId>
79 <artifactId>xml-apis</artifactId>
80 <version>2.0.2</version>
81 <scope>compile</scope>
84 <groupId>com.allen-sauer.gwt.log</groupId>
85 <artifactId>gwt-log</artifactId>
86 <version>3.1.8</version>
88 <scope>compile</scope>
91 <groupId>org.apache.commons</groupId>
92 <artifactId>commons-lang3</artifactId>
93 <version>3.1</version>
94 <scope>compile</scope>
97 <groupId>org.apache.httpcomponents</groupId>
98 <artifactId>httpclient</artifactId>
99 <version>4.2.2</version>
102 <groupId>commons-codec</groupId>
103 <artifactId>commons-codec</artifactId>
104 <version>1.7</version>
105 <scope>compile</scope>
108 <groupId>com.google.guava</groupId>
109 <artifactId>guava</artifactId>
110 <version>13.0.1</version>
113 <groupId>org.jooq</groupId>
114 <artifactId>jooq</artifactId>
115 <version>2.6.0</version>
116 <scope>compile</scope>
119 <groupId>net.sf.jasperreports</groupId>
120 <artifactId>jasperreports</artifactId>
121 <version>5.0.0</version>
122 <scope>compile</scope>
124 <!-- There is apparently a clash between the jdtcore used by jasperreports
125 and gwt, so we do this to avoid the reportUnusedDeclaredThrownExceptionIncludeDocCommentReference
126 exception during the gwt compile. -->
128 <groupId>eclipse</groupId>
129 <artifactId>jdtcore</artifactId>
135 <groupId>log4j</groupId>
136 <artifactId>log4j</artifactId>
137 <version>1.2.17</version>
139 <scope>compile</scope> <!-- It is used for runtime and test scopes -->
142 <!-- This seems to be necessary so we can see errors from JDBC -->
144 <groupId>org.slf4j</groupId>
145 <artifactId>slf4j-simple</artifactId>
146 <version>1.7.2</version>
151 <groupId>junit</groupId>
152 <artifactId>junit</artifactId>
153 <version>4.11</version>
157 <groupId>org.hamcrest</groupId>
158 <artifactId>hamcrest-core</artifactId>
159 <version>1.3</version>
163 <groupId>com.googlecode.gwt-test-utils</groupId>
164 <artifactId>gwt-test-utils</artifactId>
165 <version>0.43</version>
169 <groupId>org.easymock</groupId>
170 <artifactId>easymock</artifactId>
171 <version>3.1</version>
176 <url>http://www.glom.org/wiki/index.php?title=Development/OnlineGlom</url>
178 <!-- Generate compiled stuff in the folder used for developing mode -->
179 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
183 <!-- GWT Maven Plugin -->
185 <groupId>org.codehaus.mojo</groupId>
186 <artifactId>gwt-maven-plugin</artifactId>
187 <version>2.5.0</version>
197 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin
198 documentation at codehaus.org -->
200 <runTarget>OnlineGlom.html</runTarget>
201 <hostedWebapp>${webappDirectory}</hostedWebapp>
202 <i18nConstantsBundles>
203 <i18nConstantsBundle>org.glom.web.client.ui.OnlineGlomConstants</i18nConstantsBundle>
204 </i18nConstantsBundles>
205 <mode>htmlunit</mode> <!-- Because the default, manual, waits for us to paste a URL into a browser. -->
206 <!-- <productionMode>true</productionMode> -->
210 <!-- Copy static web files before executing gwt:run -->
212 <groupId>org.apache.maven.plugins</groupId>
213 <artifactId>maven-war-plugin</artifactId>
214 <version>2.2</version>
217 <phase>compile</phase>
219 <goal>exploded</goal>
224 <webappDirectory>${webappDirectory}</webappDirectory>
229 <artifactId>maven-assembly-plugin</artifactId>
230 <version>2.3</version>
233 <descriptor>assembly.xml</descriptor>
235 <appendAssemblyId>false</appendAssemblyId>
240 <groupId>org.apache.maven.plugins</groupId>
241 <artifactId>maven-compiler-plugin</artifactId>
242 <version>2.5.1</version>
250 mvn dependency:analyze-report
251 to generate target/dependency-analysis.html
254 <groupId>org.apache.maven.plugins</groupId>
255 <artifactId>maven-dependency-plugin</artifactId>
256 <version>2.4</version>
260 <phase>package</phase>
267 <!--This plugin's configuration is used to store Eclipse m2e settings
268 only. It has no influence on the Maven build itself. -->
270 <groupId>org.eclipse.m2e</groupId>
271 <artifactId>lifecycle-mapping</artifactId>
272 <version>1.0.0</version>
274 <lifecycleMappingMetadata>
277 <pluginExecutionFilter>
278 <groupId>org.codehaus.mojo</groupId>
279 <artifactId>gwt-maven-plugin</artifactId>
280 <versionRange>[2.5.0,)</versionRange>
284 </pluginExecutionFilter>
290 <pluginExecutionFilter>
292 org.apache.maven.plugins
301 <goal>exploded</goal>
303 </pluginExecutionFilter>
309 </lifecycleMappingMetadata>
319 <groupId>org.apache.maven.plugins</groupId>
320 <artifactId>maven-surefire-report-plugin</artifactId>
321 <version>2.12</version>
323 <!-- your configuration here -->
330 <description>gwt-glom (OnlineGlom) is a web UI for Glom database systems.
331 See http://www.glom.org
334 <url>http://gitorious.org/online-glom</url>
337 <system>Bugzilla</system>
338 <url>https://bugzilla.gnome.org/browse.cgi?product=Glom</url>