Update the project URL.
[online-glom:gwt-glom.git] / pom.xml
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">
4
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.8.1</version>
11         <name>OnlineGlom</name>
12
13         <licenses>
14                 <license>
15                         <name>LGPL v3</name>
16                         <distribution>repo and manual</distribution>
17                         <url>http://www.gnu.org/licenses/lgpl.html</url>
18                 </license>
19         </licenses>
20
21         <!-- gwt-test-utils is not in the regular maven repository: -->
22         <repositories>
23                 <repository>
24                 <id>forge.octo.com</id>
25                 <url>http://forge.octo.com/nexus/content/repositories/releases/</url>
26                 </repository>
27         </repositories>
28
29         <properties>
30                 <!-- Convenience property to set the GWT version -->
31                 <gwt.version>2.4.0</gwt.version>
32                 <!-- GWT requires java 1.6 -->
33                 <maven.compiler.source>1.6</maven.compiler.source>
34                 <maven.compiler.target>1.6</maven.compiler.target>
35                 <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
36         </properties>
37
38         <dependencies>
39                 <dependency>
40                         <groupId>com.google.gwt</groupId>
41                         <artifactId>gwt-servlet</artifactId>
42                         <version>${gwt.version}</version>
43                         <scope>runtime</scope>
44                 </dependency>
45                 <dependency>
46                         <groupId>com.google.gwt</groupId>
47                         <artifactId>gwt-user</artifactId>
48                         <version>${gwt.version}</version>
49                         <scope>provided</scope>
50                 </dependency>
51                 <!-- Since the java-libglom jar uses jni it can only be loaded once and 
52                         therefore must not be included in each war. Instead the java-libglom jar 
53                         must be placed in $CATALINA_HOME/lib. Scope provided ensures that the jar 
54                         is available for compiling and testing but will not be packaged in the war. 
55                         More information about deploying servlets that use jni jars can be found 
56                         in the "JNI Based Applications" section of the Tomcat release notes:
57                         http://tomcat.apache.org/tomcat-7.0-doc/RELEASE-NOTES.txt -->
58                 <dependency>
59                         <groupId>org.glom.libglom</groupId>
60                         <artifactId>java-libglom</artifactId>
61                         <version>1.21.8</version>
62                         <scope>provided</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>c3p0</groupId>
66                         <artifactId>c3p0</artifactId>
67                         <version>0.9.1.2</version>
68                         <type>jar</type>
69                         <scope>compile</scope>
70                 </dependency>
71                 <dependency>
72                         <groupId>commons-io</groupId>
73                         <artifactId>commons-io</artifactId>
74                         <version>2.3</version>
75                         <type>jar</type>
76                         <scope>compile</scope>
77                 </dependency>
78                 <dependency>
79                         <groupId>postgresql</groupId>
80                         <artifactId>postgresql</artifactId>
81                         <version>9.1-901.jdbc4</version>
82                         <type>jar</type>
83                         <scope>runtime</scope>
84                 </dependency>
85                 <dependency>
86                         <groupId>com.allen-sauer.gwt.log</groupId>
87                         <artifactId>gwt-log</artifactId>
88                         <version>3.1.8</version>
89                         <type>jar</type>
90                         <scope>compile</scope>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.apache.commons</groupId>
94                         <artifactId>commons-lang3</artifactId>
95                         <version>3.1</version>
96                         <scope>compile</scope>
97                 </dependency>
98                 <dependency>
99                         <groupId>net.sf.jasperreports</groupId>
100                         <artifactId>jasperreports</artifactId>
101                         <version>4.5.1</version>
102                         <scope>compile</scope>
103                         <exclusions>
104                                 <!-- There is apparently a clash between the jdtcore used by jasperreports and gwt,
105                                 so we do this to avoid the reportUnusedDeclaredThrownExceptionIncludeDocCommentReference
106                                 exception during the gwt compile. -->
107                                 <exclusion>
108                                         <groupId>eclipse</groupId>
109                                         <artifactId>jdtcore</artifactId>
110                                 </exclusion>
111                         </exclusions>
112                 </dependency>
113             
114                 <dependency>
115                         <groupId>log4j</groupId>
116                         <artifactId>log4j</artifactId>
117                         <version>1.2.16</version>
118                         <type>jar</type>
119                         <scope>runtime</scope>
120                 </dependency>
121                 <dependency>
122                         <groupId>junit</groupId>
123                         <artifactId>junit</artifactId>
124                         <version>4.10</version>
125                         <scope>test</scope>
126                 </dependency>
127                 <dependency>
128                 <groupId>com.googlecode.gwt-test-utils</groupId>
129                         <artifactId>gwt-test-utils</artifactId>
130                         <version>0.38</version>
131                         <scope>test</scope>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.easymock</groupId>
135                         <artifactId>easymock</artifactId>
136                         <version>3.1</version>
137                         <scope>test</scope>
138                 </dependency>
139         </dependencies>
140
141         <url>http://www.glom.org/wiki/index.php?title=Development/OnlineGlom</url>
142         <build>
143                 <!-- Generate compiled stuff in the folder used for developing mode -->
144                 <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
145
146                 <plugins>
147
148                         <!-- GWT Maven Plugin -->
149                         <plugin>
150                                 <groupId>org.codehaus.mojo</groupId>
151                                 <artifactId>gwt-maven-plugin</artifactId>
152                                 <version>2.4.0</version>
153                                 <executions>
154                                         <execution>
155                                                 <goals>
156                                                         <goal>i18n</goal>
157                                                         <goal>compile</goal>
158                                                         <goal>test</goal>
159                                                 </goals>
160                                         </execution>
161                                 </executions>
162                                 <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
163                                         documentation at codehaus.org -->
164                                 <configuration>
165                                         <runTarget>OnlineGlom.html</runTarget>
166                                         <hostedWebapp>${webappDirectory}</hostedWebapp>
167                                         <i18nConstantsBundles>
168                                           <i18nConstantsBundle>org.glom.web.client.ui.OnlineGlomConstants</i18nConstantsBundle>
169                                         </i18nConstantsBundles>
170                                 </configuration>
171                         </plugin>
172
173                         <!-- Copy static web files before executing gwt:run -->
174                         <plugin>
175                                 <groupId>org.apache.maven.plugins</groupId>
176                                 <artifactId>maven-war-plugin</artifactId>
177                                 <version>2.2</version>
178                                 <executions>
179                                         <execution>
180                                                 <phase>compile</phase>
181                                                 <goals>
182                                                         <goal>exploded</goal>
183                                                 </goals>
184                                         </execution>
185                                 </executions>
186                                 <configuration>
187                                         <webappDirectory>${webappDirectory}</webappDirectory>
188                                 </configuration>
189                         </plugin>
190
191                         <plugin>
192                                 <artifactId>maven-assembly-plugin</artifactId>
193                                 <version>2.3</version>
194                                 <configuration>
195                                         <descriptors>
196                                                 <descriptor>assembly.xml</descriptor>
197                                         </descriptors>
198                                         <appendAssemblyId>false</appendAssemblyId>
199                                 </configuration>
200                         </plugin>
201
202                 </plugins>
203                 <pluginManagement>
204                         <plugins>
205                                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
206                                 <plugin>
207                                         <groupId>org.eclipse.m2e</groupId>
208                                         <artifactId>lifecycle-mapping</artifactId>
209                                         <version>1.0.0</version>
210                                         <configuration>
211                                                 <lifecycleMappingMetadata>
212                                                         <pluginExecutions>
213                                                                 <pluginExecution>
214                                                                         <pluginExecutionFilter>
215                                                                                 <groupId>
216                                                                                         org.apache.maven.plugins
217                                                                                 </groupId>
218                                                                                 <artifactId>
219                                                                                         maven-war-plugin
220                                                                                 </artifactId>
221                                                                                 <versionRange>
222                                                                                         [2.1.1,)
223                                                                                 </versionRange>
224                                                                                 <goals>
225                                                                                         <goal>exploded</goal>
226                                                                                 </goals>
227                                                                         </pluginExecutionFilter>
228                                                                         <action>
229                                                                                 <ignore></ignore>
230                                                                         </action>
231                                                                 </pluginExecution>
232                                                         </pluginExecutions>
233                                                 </lifecycleMappingMetadata>
234                                         </configuration>
235                                 </plugin>
236                         </plugins>
237                 </pluginManagement>
238         </build>
239
240         <reporting>
241                 <plugins>
242                         <plugin>
243                                 <groupId>org.apache.maven.plugins</groupId>
244                                 <artifactId>maven-surefire-report-plugin</artifactId>
245                                 <version>2.12</version>
246                                 <configuration>
247                                         <!-- your configuration here -->
248                                 </configuration>
249                         </plugin>
250                 </plugins>
251         </reporting>
252
253         <description>gwt-glom (OnlineGlom) is a web UI for Glom database systems.
254 See http://www.glom.org
255 </description>
256         <scm>
257                 <url>http://gitorious.org/online-glom</url>
258         </scm>
259         <issueManagement>
260                 <system>Bugzilla</system>
261                 <url>https://bugzilla.gnome.org/browse.cgi?product=Glom</url>
262         </issueManagement>
263 </project>