comparison gwt-client/pom.xml @ 8502:7f63ad20d4f0

Whitespace-cleanup in XML-files.
author "Tom Gottfried <tom@intevation.de>"
date Tue, 16 Dec 2014 13:29:38 +0100
parents b834caf0a4f0
children 1816389d5f6c
comparison
equal deleted inserted replaced
8501:c8d633c0971b 8502:7f63ad20d4f0
1 <?xml version="1.0" encoding="UTF-8"?> 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" 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"> 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 4
5 <!-- POM file generated with GWT webAppCreator --> 5 <!-- POM file generated with GWT webAppCreator -->
6 <modelVersion>4.0.0</modelVersion> 6 <modelVersion>4.0.0</modelVersion>
7 <groupId>org.dive4elements.river</groupId> 7 <groupId>org.dive4elements.river</groupId>
8 <artifactId>gwt-client</artifactId> 8 <artifactId>gwt-client</artifactId>
9 <packaging>war</packaging> 9 <packaging>war</packaging>
10 <version>1.0-SNAPSHOT</version> 10 <version>1.0-SNAPSHOT</version>
11 <name>org.dive4elements.river.client</name> 11 <name>org.dive4elements.river.client</name>
12 12
13 <properties> 13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 <!-- Convenience property to set the GWT version --> 15 <!-- Convenience property to set the GWT version -->
16 <gwtVersion>2.4.0</gwtVersion> 16 <gwtVersion>2.4.0</gwtVersion>
17 <!-- GWT needs at least java 1.5 --> 17 <!-- GWT needs at least java 1.5 -->
123 <version>1.4</version> 123 <version>1.4</version>
124 </dependency> 124 </dependency>
125 </dependencies> 125 </dependencies>
126 126
127 <build> 127 <build>
128 <!-- Generate compiled stuff in the folder used for developing mode --> 128 <!-- Generate compiled stuff in the folder used for developing mode -->
129 <outputDirectory>target/www/WEB-INF/classes</outputDirectory> 129 <outputDirectory>target/www/WEB-INF/classes</outputDirectory>
130 130
131 <plugins> 131 <plugins>
132 132
133 <!-- GWT Maven Plugin--> 133 <!-- GWT Maven Plugin-->
145 <groupId>com.google.gwt</groupId> 145 <groupId>com.google.gwt</groupId>
146 <artifactId>gwt-dev</artifactId> 146 <artifactId>gwt-dev</artifactId>
147 <version>${gwtVersion}</version> 147 <version>${gwtVersion}</version>
148 </dependency> 148 </dependency>
149 </dependencies> 149 </dependencies>
150 <!-- JS is only needed in the package phase, this speeds up testing --> 150 <!-- JS is only needed in the package phase, this speeds up testing -->
151 <executions> 151 <executions>
152 <execution> 152 <execution>
153 <phase>prepare-package</phase> 153 <phase>prepare-package</phase>
154 <goals> 154 <goals>
155 <goal>compile</goal> 155 <goal>compile</goal>
156 </goals> 156 </goals>
157 </execution> 157 </execution>
158 </executions> 158 </executions>
159 <!-- Plugin configuration. There are many available options, 159 <!-- Plugin configuration. There are many available options,
160 see gwt-maven-plugin documentation at codehaus.org --> 160 see gwt-maven-plugin documentation at codehaus.org -->
161 <configuration> 161 <configuration>
162 <!-- URL that should be automatically opened in the GWT shell (gwt:run). --> 162 <!-- URL that should be automatically opened in the GWT shell (gwt:run). -->
163 <runTarget>FLYS.html</runTarget> 163 <runTarget>FLYS.html</runTarget>
164 <!-- Location of the develop-mode web application structure (gwt:run). --> 164 <!-- Location of the develop-mode web application structure (gwt:run). -->
165 <hostedWebapp>target/www</hostedWebapp> 165 <hostedWebapp>target/www</hostedWebapp>
177 <additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement> 177 <additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement>
178 </additionalClasspathElements> 178 </additionalClasspathElements>
179 <useManifestOnlyJar>false</useManifestOnlyJar> 179 <useManifestOnlyJar>false</useManifestOnlyJar>
180 <forkMode>always</forkMode> 180 <forkMode>always</forkMode>
181 181
182 <!-- Folder for generated testing stuff --> 182 <!-- Folder for generated testing stuff -->
183 <systemProperties> 183 <systemProperties>
184 <property> 184 <property>
185 <name>gwt.args</name> 185 <name>gwt.args</name>
186 <value>-out target/www</value> 186 <value>-out target/www</value>
187 </property> 187 </property>
188 </systemProperties> 188 </systemProperties>
189 </configuration> 189 </configuration>
190 </plugin> 190 </plugin>
191 191
192 <!-- Copy static web files before executing gwt:run --> 192 <!-- Copy static web files before executing gwt:run -->
193 <plugin> 193 <plugin>
194 <artifactId>maven-resources-plugin</artifactId> 194 <artifactId>maven-resources-plugin</artifactId>
195 <executions> 195 <executions>
196 <execution> 196 <execution>
221 <fileset><directory>www-test</directory></fileset> 221 <fileset><directory>www-test</directory></fileset>
222 <fileset><directory>.gwt-tmp</directory></fileset> 222 <fileset><directory>.gwt-tmp</directory></fileset>
223 </filesets> 223 </filesets>
224 </configuration> 224 </configuration>
225 </plugin> 225 </plugin>
226 226
227 </plugins> 227 </plugins>
228 </build> 228 </build>
229 <repositories> 229 <repositories>
230 <repository> 230 <repository>
231 <id>com.smartgwt</id> 231 <id>com.smartgwt</id>

http://dive4elements.wald.intevation.org