2010-04-06 02:37:27 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2010 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.
|
|
|
|
-->
|
2010-04-06 04:59:11 -07:00
|
|
|
<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">
|
2010-04-06 02:37:27 -07:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-11-16 17:34:42 -08:00
|
|
|
|
2010-04-06 02:37:27 -07:00
|
|
|
<artifactId>core</artifactId>
|
2015-08-19 05:21:05 -07:00
|
|
|
<version>3.2.2-SNAPSHOT</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2012-11-18 03:50:25 -08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-04-20 12:48:09 -07:00
|
|
|
|
2013-11-16 17:34:42 -08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>zxing-parent</artifactId>
|
2015-08-19 05:21:05 -07:00
|
|
|
<version>3.2.2-SNAPSHOT</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>ZXing Core</name>
|
|
|
|
<description>Core barcode encoding/decoding library</description>
|
2016-06-13 02:25:49 -07:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>proguard-library</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.wvengen</groupId>
|
|
|
|
<artifactId>proguard-maven-plugin</artifactId>
|
2016-06-20 01:13:21 -07:00
|
|
|
<version>${proguard.plugin.version}</version>
|
2016-06-13 02:25:49 -07:00
|
|
|
<configuration>
|
|
|
|
<options combine.children="append">
|
|
|
|
<option>-optimizations !code/simplification/cast,!code/allocation/variable,!field/*,!class/*,!method/*</option>
|
|
|
|
</options>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2013-05-14 02:35:25 -07:00
|
|
|
|
2012-11-18 03:50:25 -08:00
|
|
|
</project>
|
|
|
|
|