xref: /aosp_15_r20/external/zxing/android-core/pom.xml (revision 513427e33d61bc67fc40bc261642ac0b2a686b45)
1*513427e3STreehugger Robot<?xml version="1.0" encoding="UTF-8"?>
2*513427e3STreehugger Robot<!--
3*513427e3STreehugger Robot Copyright (C) 2014 ZXing authors
4*513427e3STreehugger Robot
5*513427e3STreehugger Robot Licensed under the Apache License, Version 2.0 (the "License");
6*513427e3STreehugger Robot you may not use this file except in compliance with the License.
7*513427e3STreehugger Robot You may obtain a copy of the License at
8*513427e3STreehugger Robot
9*513427e3STreehugger Robot      http://www.apache.org/licenses/LICENSE-2.0
10*513427e3STreehugger Robot
11*513427e3STreehugger Robot Unless required by applicable law or agreed to in writing, software
12*513427e3STreehugger Robot distributed under the License is distributed on an "AS IS" BASIS,
13*513427e3STreehugger Robot WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*513427e3STreehugger Robot See the License for the specific language governing permissions and
15*513427e3STreehugger Robot limitations under the License.
16*513427e3STreehugger Robot -->
17*513427e3STreehugger Robot<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">
18*513427e3STreehugger Robot  <modelVersion>4.0.0</modelVersion>
19*513427e3STreehugger Robot
20*513427e3STreehugger Robot  <artifactId>android-core</artifactId>
21*513427e3STreehugger Robot  <version>3.5.2</version>
22*513427e3STreehugger Robot  <packaging>jar</packaging>
23*513427e3STreehugger Robot
24*513427e3STreehugger Robot  <dependencies>
25*513427e3STreehugger Robot    <dependency>
26*513427e3STreehugger Robot      <groupId>com.google.android</groupId>
27*513427e3STreehugger Robot      <artifactId>android</artifactId>
28*513427e3STreehugger Robot    </dependency>
29*513427e3STreehugger Robot  </dependencies>
30*513427e3STreehugger Robot
31*513427e3STreehugger Robot  <build>
32*513427e3STreehugger Robot    <plugins>
33*513427e3STreehugger Robot      <plugin>
34*513427e3STreehugger Robot        <groupId>org.apache.maven.plugins</groupId>
35*513427e3STreehugger Robot        <artifactId>maven-checkstyle-plugin</artifactId>
36*513427e3STreehugger Robot        <configuration>
37*513427e3STreehugger Robot          <configLocation>../src/checkstyle/checkstyle.xml</configLocation>
38*513427e3STreehugger Robot        </configuration>
39*513427e3STreehugger Robot      </plugin>
40*513427e3STreehugger Robot    </plugins>
41*513427e3STreehugger Robot  </build>
42*513427e3STreehugger Robot
43*513427e3STreehugger Robot  <parent>
44*513427e3STreehugger Robot    <groupId>com.google.zxing</groupId>
45*513427e3STreehugger Robot    <artifactId>zxing-parent</artifactId>
46*513427e3STreehugger Robot    <version>3.5.2</version>
47*513427e3STreehugger Robot  </parent>
48*513427e3STreehugger Robot
49*513427e3STreehugger Robot  <name>ZXing Android Core</name>
50*513427e3STreehugger Robot  <description>Code common to Android applications</description>
51*513427e3STreehugger Robot
52*513427e3STreehugger Robot</project>
53