2011-10-06 09:43:20 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2011 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">
|
2013-04-20 12:48:09 -07:00
|
|
|
|
2011-12-08 09:23:11 -08:00
|
|
|
<parent>
|
2013-04-20 12:48:09 -07:00
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>zxing</artifactId>
|
|
|
|
<version>2.2-SNAPSHOT</version>
|
2011-12-08 09:23:11 -08:00
|
|
|
</parent>
|
2013-04-20 12:48:09 -07:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2011-10-06 09:43:20 -07:00
|
|
|
<artifactId>android-integration</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>ZXing Android Integration lib</name>
|
2012-10-22 06:33:55 -07:00
|
|
|
<version>2.2-SNAPSHOT</version>
|
2011-10-06 09:43:20 -07:00
|
|
|
<description>Integration helper classes for Android applications wanting to create/scan bar codes</description>
|
2013-04-20 12:48:09 -07:00
|
|
|
|
2011-10-06 09:43:20 -07:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.android</groupId>
|
|
|
|
<artifactId>android</artifactId>
|
2012-10-22 07:13:57 -07:00
|
|
|
<version>4.1.1.4</version>
|
2013-04-20 12:48:09 -07:00
|
|
|
<scope>provided</scope>
|
2012-01-19 08:46:54 -08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.android</groupId>
|
2012-03-02 11:59:29 -08:00
|
|
|
<artifactId>support-v4</artifactId>
|
2012-06-08 11:26:20 -07:00
|
|
|
<version>r7</version>
|
2013-04-20 12:48:09 -07:00
|
|
|
<scope>provided</scope>
|
2012-11-24 08:58:19 -08:00
|
|
|
<optional>true</optional>
|
2011-10-06 09:43:20 -07:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-04-20 12:48:09 -07:00
|
|
|
|
2011-10-06 09:43:20 -07:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-01-19 08:46:54 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- By default exclude the Honeycomb and Support classes. -->
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/IntentIntegratorV30*</exclude>
|
|
|
|
<exclude>**/IntentIntegratorSupportV4*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<!-- Build a Honeycomb classifier and exclude the Support classes. -->
|
|
|
|
<execution>
|
|
|
|
<id>honeycomb</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<classifier>honeycomb</classifier>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/IntentIntegratorSupportV4*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<!-- Build a SupportV4 classifier and exclude the Honeycomb classes. -->
|
|
|
|
<execution>
|
|
|
|
<id>supportv4</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<classifier>supportv4</classifier>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/IntentIntegratorV30*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-04-21 04:30:54 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-androidtest</id>
|
2013-04-21 09:28:37 -07:00
|
|
|
<phase>package</phase>
|
2013-04-21 04:30:54 -07:00
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>android-integration</artifactId>
|
|
|
|
<version>2.2-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<outputDirectory>../androidtest/libs</outputDirectory>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-10-06 09:43:20 -07:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-04-20 12:48:09 -07:00
|
|
|
|
2011-10-06 09:43:20 -07:00
|
|
|
</project>
|