2013-05-07 05:29:13 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2013 ZXing authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-11-16 17:34:42 -08:00
|
|
|
|
2013-05-07 05:29:13 -07:00
|
|
|
<artifactId>zxing.appspot.com</artifactId>
|
2013-11-29 10:31:32 -08:00
|
|
|
<version>2.3.0-SNAPSHOT</version>
|
2013-11-25 00:37:38 -08:00
|
|
|
<packaging>war</packaging>
|
2013-11-16 17:34:42 -08:00
|
|
|
|
2013-05-07 05:29:13 -07:00
|
|
|
<dependencies>
|
2013-11-25 00:37:38 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
|
|
|
<version>${gwt.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2013-05-07 05:29:13 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2013-11-25 00:37:38 -08:00
|
|
|
<version>${gwt.version}</version>
|
2013-11-24 10:26:56 -08:00
|
|
|
<scope>provided</scope>
|
2013-05-07 05:29:13 -07:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-11-16 17:34:42 -08:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>zxing-parent</artifactId>
|
2013-11-29 10:31:32 -08:00
|
|
|
<version>2.3.0-SNAPSHOT</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</parent>
|
|
|
|
|
2013-11-25 00:37:38 -08:00
|
|
|
<properties>
|
2013-11-29 03:15:42 -08:00
|
|
|
<gwt.version>2.6.0-rc1</gwt.version>
|
2013-11-25 00:37:38 -08:00
|
|
|
</properties>
|
2013-05-14 02:35:25 -07:00
|
|
|
|
2013-11-25 00:37:38 -08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2013-11-29 03:15:42 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>7</source>
|
|
|
|
<target>7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-11-25 00:37:38 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
|
|
|
<version>${gwt.version}</version>
|
|
|
|
<configuration>
|
2013-11-25 00:52:05 -08:00
|
|
|
<runTarget>Generator.html</runTarget>
|
2013-11-25 00:37:38 -08:00
|
|
|
<inplace>true</inplace>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-11-24 10:26:56 -08:00
|
|
|
|
2013-11-16 17:34:42 -08:00
|
|
|
<name>ZXing Appspot-based encoder</name>
|
|
|
|
<description>GWT-based encoder app hosted at zxing.appspot.com</description>
|
2013-05-07 05:29:13 -07:00
|
|
|
|
|
|
|
</project>
|