2013-11-24 08:18:44 -08: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>
|
|
|
|
|
|
|
|
<artifactId>android</artifactId>
|
2014-07-25 00:45:19 -07:00
|
|
|
<version>4.7.1</version>
|
2014-03-04 08:45:52 -08:00
|
|
|
<packaging>apk</packaging>
|
2013-11-24 08:18:44 -08:00
|
|
|
|
2013-12-26 10:49:07 -08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>core</artifactId>
|
2014-03-04 08:45:52 -08:00
|
|
|
</dependency>
|
2014-04-30 07:12:13 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>android-core</artifactId>
|
|
|
|
</dependency>
|
2014-03-04 08:45:52 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.android</groupId>
|
|
|
|
<artifactId>android</artifactId>
|
2013-12-26 10:49:07 -08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2013-11-24 08:18:44 -08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>zxing-parent</artifactId>
|
2014-07-25 00:45:19 -07:00
|
|
|
<version>3.1.1-SNAPSHOT</version>
|
2013-11-24 08:18:44 -08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<build>
|
2013-12-26 11:25:19 -08:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2013-11-24 08:18:44 -08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-03-04 08:45:52 -08:00
|
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
|
|
<artifactId>android-maven-plugin</artifactId>
|
2013-12-26 11:25:19 -08:00
|
|
|
</plugin>
|
2013-11-24 08:18:44 -08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<name>Android Barcode Scanner app</name>
|
|
|
|
<description>Provides the Android app "Barcode Scanner"</description>
|
|
|
|
|
|
|
|
</project>
|