2013-11-16 17:34:42 -08: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.
|
|
|
|
-->
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>zxing-parent</artifactId>
|
2014-05-22 08:24:03 -07:00
|
|
|
<version>3.1.1-SNAPSHOT</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2013-11-29 04:28:10 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2013-12-26 11:28:57 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2014-09-10 15:10:03 -07:00
|
|
|
<version>18.0</version>
|
2013-12-26 11:28:57 -08:00
|
|
|
</dependency>
|
2014-03-04 08:45:52 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.android</groupId>
|
|
|
|
<artifactId>android</artifactId>
|
|
|
|
<version>4.1.1.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-05-22 00:17:32 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
<version>${zxing.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>android-core</artifactId>
|
|
|
|
<version>${zxing.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>android-integration</artifactId>
|
|
|
|
<version>${zxing.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
<version>${zxing.version}</version>
|
|
|
|
</dependency>
|
2013-11-16 17:34:42 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2014-09-26 03:12:15 -07:00
|
|
|
<version>4.12-beta-2</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>core</module>
|
|
|
|
<module>javase</module>
|
2014-05-22 04:30:15 -07:00
|
|
|
<module>android-core</module>
|
2013-11-16 17:34:42 -08:00
|
|
|
<module>android-integration</module>
|
|
|
|
<module>zxing.appspot.com</module>
|
|
|
|
<module>zxingorg</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2014-04-14 00:23:28 -07:00
|
|
|
<java.version>1.7</java.version>
|
2014-04-05 15:47:03 -07:00
|
|
|
<slf4j.version>1.7.7</slf4j.version>
|
2014-05-22 00:17:32 -07:00
|
|
|
<!-- This can't reference project.version as some subprojects version differently -->
|
2014-05-22 08:24:03 -07:00
|
|
|
<zxing.version>3.1.1-SNAPSHOT</zxing.version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</properties>
|
|
|
|
|
2014-08-06 01:05:22 -07:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>https://repo1.maven.org/maven2</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>https://repo1.maven.org/maven2</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2013-11-16 17:34:42 -08:00
|
|
|
<build>
|
2013-11-16 20:57:26 -08:00
|
|
|
<plugins>
|
2013-11-21 04:00:37 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
2014-01-22 10:11:05 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
</plugin>
|
2014-02-28 03:52:52 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
</plugin>
|
2014-09-08 12:58:21 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>clirr-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2014-10-02 09:22:39 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2014-10-02 11:50:13 -07:00
|
|
|
<version>0.7.2.201409121644</version>
|
2014-10-02 09:22:39 -07:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-11-16 20:57:26 -08:00
|
|
|
</plugins>
|
2013-11-16 17:34:42 -08:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>1.3.1</version>
|
2014-05-13 07:35:52 -07:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce</id>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
2014-05-22 08:19:05 -07:00
|
|
|
<dependencyConvergence />
|
2014-05-13 07:35:52 -07:00
|
|
|
<requireMavenVersion>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
</requireMavenVersion>
|
|
|
|
<requireJavaVersion>
|
|
|
|
<version>${java.version}</version>
|
|
|
|
</requireJavaVersion>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2014-04-14 00:23:28 -07:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2013-11-16 17:34:42 -08:00
|
|
|
<compilerArgs>
|
|
|
|
<arg>-Xlint:all</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2014-07-13 11:16:54 -07:00
|
|
|
<version>2.3</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
2014-04-18 06:17:29 -07:00
|
|
|
<goal>jar-no-fork</goal>
|
2013-11-16 17:34:42 -08:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<configuration>
|
2014-04-14 00:23:28 -07:00
|
|
|
<javadocVersion>${java.version}</javadocVersion>
|
2013-11-16 17:34:42 -08:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
2014-09-26 03:12:15 -07:00
|
|
|
<version>2.6</version>
|
2013-11-16 18:00:19 -08:00
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>.</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/bin/**</include>
|
|
|
|
<include>**/gen/**</include>
|
|
|
|
<include>**/libs/*</include>
|
|
|
|
<include>**/out/**</include>
|
2013-11-29 05:02:11 -08:00
|
|
|
<include>**/classes/**</include>
|
|
|
|
<include>**/gwt-unitCache/**</include>
|
|
|
|
<include>**/webapp/generator/**</include>
|
|
|
|
<include>**/WEB-INF/deploy/**</include>
|
2013-11-16 18:00:19 -08:00
|
|
|
</includes>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
2014-09-02 08:39:55 -07:00
|
|
|
<version>2.5.2</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2013-11-25 00:28:59 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-11-16 17:34:42 -08:00
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2014-07-02 15:00:15 -07:00
|
|
|
<version>2.5</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
2014-03-04 08:45:52 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
2014-03-25 12:08:53 -07:00
|
|
|
<version>1.3.2</version>
|
2014-03-04 08:45:52 -08:00
|
|
|
</plugin>
|
2013-11-16 17:34:42 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2014-09-26 03:12:15 -07:00
|
|
|
<version>2.5.1</version>
|
2014-02-28 04:17:52 -08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
2014-09-26 03:12:15 -07:00
|
|
|
<version>1.9.2</version>
|
2014-02-28 04:17:52 -08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-02-28 03:52:52 -08:00
|
|
|
<configuration>
|
2014-02-28 04:38:36 -08:00
|
|
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
2014-02-28 03:52:52 -08:00
|
|
|
<tagNameFormat>zxing-@{project.version}</tagNameFormat>
|
2014-04-18 06:17:29 -07:00
|
|
|
<releaseProfiles>release</releaseProfiles>
|
2014-02-28 04:17:52 -08:00
|
|
|
<goals>deploy</goals>
|
2014-02-28 03:52:52 -08:00
|
|
|
</configuration>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
2014-02-28 04:17:52 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-scm-plugin</artifactId>
|
2014-09-21 06:28:17 -07:00
|
|
|
<version>1.9.2</version>
|
2014-02-28 04:17:52 -08:00
|
|
|
</plugin>
|
2013-11-16 17:34:42 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
2014-09-02 08:39:55 -07:00
|
|
|
<version>2.8.2</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-11-16 20:57:26 -08:00
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
</plugin>
|
2013-11-16 17:34:42 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2014-02-26 13:24:22 -08:00
|
|
|
<version>1.5</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-02-28 03:52:52 -08:00
|
|
|
<configuration>
|
2014-02-28 04:38:36 -08:00
|
|
|
<keyname>Sean Owen (ZXing) <srowen@gmail.com></keyname>
|
2014-02-28 03:52:52 -08:00
|
|
|
<executable>gpg2</executable>
|
|
|
|
</configuration>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2014-03-20 06:08:13 -07:00
|
|
|
<version>2.17</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
<configuration>
|
2014-06-01 15:32:44 -07:00
|
|
|
<forkCount>0.5C</forkCount>
|
2013-11-16 17:34:42 -08:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<java.awt.headless>true</java.awt.headless>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2014-09-26 03:12:15 -07:00
|
|
|
<version>2.9</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-11-24 08:18:44 -08:00
|
|
|
<version>2.4</version>
|
|
|
|
</plugin>
|
2014-03-04 08:45:52 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
|
|
<artifactId>android-maven-plugin</artifactId>
|
2014-09-21 06:34:21 -07:00
|
|
|
<version>4.0.0-rc.1</version>
|
2014-03-04 08:45:52 -08:00
|
|
|
<extensions>true</extensions>
|
2014-03-13 09:26:17 -07:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>android-zipalign</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>zipalign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-03-04 08:45:52 -08:00
|
|
|
<configuration>
|
|
|
|
<sdk>
|
|
|
|
<platform>15</platform>
|
|
|
|
</sdk>
|
2014-03-13 08:09:36 -07:00
|
|
|
<proguard>
|
|
|
|
<skip>true</skip>
|
|
|
|
</proguard>
|
|
|
|
<sign>
|
|
|
|
<debug>true</debug>
|
|
|
|
</sign>
|
2014-03-13 09:26:17 -07:00
|
|
|
<zipalign>
|
|
|
|
<skip>false</skip>
|
|
|
|
</zipalign>
|
2014-03-13 08:09:36 -07:00
|
|
|
<release>false</release>
|
|
|
|
<apkDebug>true</apkDebug>
|
2014-09-21 06:34:21 -07:00
|
|
|
<androidManifestFile>AndroidManifest.xml</androidManifestFile>
|
|
|
|
<resourceDirectory>res</resourceDirectory>
|
|
|
|
<assetsDirectory>assets</assetsDirectory>
|
2014-09-26 03:12:15 -07:00
|
|
|
<nativeLibrariesDirectory>libs</nativeLibrariesDirectory>
|
2014-03-04 08:45:52 -08:00
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.proguard</groupId>
|
|
|
|
<artifactId>proguard-base</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2013-12-02 15:40:51 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
2014-07-13 11:16:54 -07:00
|
|
|
<version>3.4</version>
|
2013-12-02 15:40:51 -08:00
|
|
|
</plugin>
|
2013-11-24 08:18:44 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>1.7</version>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
2013-12-26 11:25:19 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2014-09-13 15:25:49 -07:00
|
|
|
<version>1.9.1</version>
|
2013-12-26 11:25:19 -08:00
|
|
|
</plugin>
|
2014-01-22 10:11:05 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
2014-07-25 14:38:33 -07:00
|
|
|
<version>3.0.0</version>
|
2014-01-22 10:11:05 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
</plugin>
|
2014-01-22 11:37:33 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
2014-08-30 11:48:48 -07:00
|
|
|
<version>0.11</version>
|
2014-01-22 11:37:33 -08:00
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/.*</exclude>
|
|
|
|
<exclude>**/.settings/**</exclude>
|
|
|
|
<exclude>**/*.iml</exclude>
|
|
|
|
<exclude>**/*.md</exclude>
|
|
|
|
<exclude>**/*.textile</exclude>
|
|
|
|
<exclude>**/*.txt</exclude>
|
|
|
|
<exclude>**/*.html</exclude>
|
|
|
|
<exclude>**/*.js</exclude>
|
|
|
|
<exclude>**/*.css</exclude>
|
|
|
|
<exclude>**/*.properties</exclude>
|
|
|
|
<exclude>**/*.cfg</exclude>
|
|
|
|
<exclude>**/*.config</exclude>
|
|
|
|
<exclude>**/*.yaml</exclude>
|
|
|
|
<exclude>**/gen/**</exclude>
|
|
|
|
<exclude>**/resources/**</exclude>
|
|
|
|
<exclude>**/target/**</exclude>
|
|
|
|
<exclude>**/dependency-reduced-pom.xml</exclude>
|
|
|
|
<exclude>private/**</exclude>
|
|
|
|
<exclude>CHANGES</exclude>
|
|
|
|
<excludeSubProjects>false</excludeSubProjects>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-09-08 12:58:21 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>clirr-maven-plugin</artifactId>
|
|
|
|
<version>2.6.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>check-api</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
2014-01-22 10:11:05 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<!-- <report>cim</report> -->
|
|
|
|
<!-- <report>dependencies</report> -->
|
|
|
|
<report>dependency-convergence</report>
|
|
|
|
<report>dependency-info</report>
|
|
|
|
<report>dependency-management</report>
|
|
|
|
<report>distribution-management</report>
|
|
|
|
<report>index</report>
|
|
|
|
<report>issue-tracking</report>
|
|
|
|
<report>license</report>
|
|
|
|
<report>mailing-list</report>
|
|
|
|
<!-- <report>modules</report> -->
|
|
|
|
<!-- <report>plugin-management</report> -->
|
|
|
|
<!-- <report>plugins</report> -->
|
|
|
|
<!-- <report>project-team</report> -->
|
|
|
|
<report>scm</report>
|
|
|
|
<report>summary</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
2013-11-16 17:34:42 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-11-16 20:57:26 -08:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2014-01-22 10:11:05 -08:00
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>aggregate</id>
|
|
|
|
<reports>
|
|
|
|
<report>aggregate</report>
|
|
|
|
<report>test-aggregate</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
2014-02-26 14:47:32 -08:00
|
|
|
<configuration>
|
|
|
|
<threshold>Normal</threshold>
|
|
|
|
<effort>Max</effort>
|
|
|
|
<xmlOutput>true</xmlOutput>
|
|
|
|
<xmlOutputDirectory>target/site</xmlOutputDirectory>
|
|
|
|
<excludeFilterFile>src/findbugs/excludes.xml</excludeFilterFile>
|
|
|
|
</configuration>
|
2014-01-22 10:11:05 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>aggregate</id>
|
|
|
|
<reports>
|
|
|
|
<report>aggregate</report>
|
|
|
|
<report>test-aggregate</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2013-11-16 17:34:42 -08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2014-01-22 10:11:05 -08:00
|
|
|
<excludeDefaults>true</excludeDefaults>
|
2013-11-16 17:34:42 -08:00
|
|
|
</reporting>
|
|
|
|
|
2014-01-22 10:11:05 -08:00
|
|
|
<name>ZXing</name>
|
2013-11-16 17:34:42 -08:00
|
|
|
<description>Parent Maven project for ZXing modules</description>
|
2014-01-18 06:06:46 -08:00
|
|
|
<url>http://github.com/zxing/zxing</url>
|
2013-11-16 17:34:42 -08:00
|
|
|
<inceptionYear>2007</inceptionYear>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2013-12-02 15:40:51 -08:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>ZXing Authors</name>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2013-11-16 17:34:42 -08:00
|
|
|
<issueManagement>
|
2014-01-18 06:06:46 -08:00
|
|
|
<system>Github</system>
|
|
|
|
<url>https://github.com/zxing/zxing/issues</url>
|
2013-11-16 17:34:42 -08:00
|
|
|
</issueManagement>
|
2014-01-22 10:11:05 -08:00
|
|
|
<mailingLists>
|
|
|
|
<mailingList>
|
|
|
|
<name>zxing Google Group</name>
|
|
|
|
<archive>https://groups.google.com/forum/?fromgroups#!forum/zxing</archive>
|
|
|
|
</mailingList>
|
|
|
|
<mailingList>
|
|
|
|
<name>StackOverflow tag</name>
|
|
|
|
<archive>http://stackoverflow.com/questions/tagged/zxing</archive>
|
|
|
|
</mailingList>
|
|
|
|
</mailingLists>
|
2013-11-16 17:34:42 -08:00
|
|
|
<scm>
|
2014-01-18 06:06:46 -08:00
|
|
|
<connection>scm:git:https://github.com/zxing/zxing.git</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/zxing/zxing.git</developerConnection>
|
|
|
|
<url>scm:git:https://github.com/zxing/zxing.git</url>
|
2014-05-22 08:24:03 -07:00
|
|
|
<tag>HEAD</tag>
|
2013-11-16 17:34:42 -08:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<prerequisites>
|
2014-03-07 16:34:14 -08:00
|
|
|
<maven>3.1.1</maven>
|
2013-11-16 17:34:42 -08:00
|
|
|
</prerequisites>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-nexus-staging</id>
|
2014-04-18 06:17:29 -07:00
|
|
|
<name>Nexus Release Repository</name>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
2013-11-16 17:34:42 -08:00
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>sonatype-nexus-snapshots</id>
|
|
|
|
<name>Sonatype Nexus Snapshots</name>
|
2014-04-18 06:17:29 -07:00
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
2013-11-16 17:34:42 -08:00
|
|
|
</snapshotRepository>
|
2014-01-22 10:11:05 -08:00
|
|
|
<site>
|
|
|
|
<id>zxing.website</id>
|
|
|
|
<name>ZXing documentation</name>
|
|
|
|
<url>http://zxing.github.io/zxing/</url>
|
|
|
|
</site>
|
2013-11-16 17:34:42 -08:00
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<profiles>
|
2014-03-07 17:05:54 -08:00
|
|
|
<profile>
|
|
|
|
<id>build-android</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env.ANDROID_HOME</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>android</module>
|
|
|
|
<module>androidtest</module>
|
2014-04-26 04:02:51 -07:00
|
|
|
<module>glass</module>
|
2014-03-07 17:05:54 -08:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2013-11-16 17:34:42 -08:00
|
|
|
<profile>
|
2014-04-18 04:39:23 -07:00
|
|
|
<id>release</id>
|
2013-11-16 17:34:42 -08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2014-03-04 08:45:52 -08:00
|
|
|
<profile>
|
|
|
|
<id>android-release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>signing</id>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>target/*.apk</include>
|
|
|
|
</includes>
|
|
|
|
<keystore>../private/ZXing.keystore</keystore>
|
|
|
|
<alias>zxing</alias>
|
|
|
|
<arguments>
|
|
|
|
<argument>-sigalg</argument>
|
|
|
|
<argument>MD5withRSA</argument>
|
|
|
|
<argument>-digestalg</argument>
|
|
|
|
<argument>SHA1</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
|
|
<artifactId>android-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<proguard>
|
|
|
|
<skip>false</skip>
|
|
|
|
<config>proguard.cfg</config>
|
|
|
|
</proguard>
|
|
|
|
<sign>
|
|
|
|
<debug>false</debug>
|
|
|
|
</sign>
|
2014-03-13 08:09:36 -07:00
|
|
|
<release>true</release>
|
|
|
|
<apkDebug>false</apkDebug>
|
2014-03-04 08:45:52 -08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2013-11-16 17:34:42 -08:00
|
|
|
</profiles>
|
|
|
|
|
2013-11-29 08:37:13 -08:00
|
|
|
</project>
|