xref: /aosp_15_r20/external/MPAndroidChart/MPChartLib/pom.xml (revision f99be7d8b6514e88ac10f2e78d89d406712b34e9)
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (c) 2014 Philipp Jahoda <[email protected]>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9    http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<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">
19    <modelVersion>4.0.0</modelVersion>
20	<version>1.4.2-SNAPSHOT</version>
21    <groupId>com.github.mikephil</groupId>
22    <artifactId>MPAndroidChart</artifactId>
23    <name>MPAndroidChart</name>
24	<description>A simple Android chart view/graph view library, supporting line- bar- and piecharts as well as scaling, dragging and animations</description>
25	<url>https://github.com/PhilJay/MPAndroidChart</url>
26    <packaging>apklib</packaging>
27    <!--<packaging>aar</packaging>-->
28
29    <properties>
30        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31    </properties>
32
33    <build>
34    	<sourceDirectory>src</sourceDirectory>
35        <plugins>
36            <plugin>
37                <groupId>com.jayway.maven.plugins.android.generation2</groupId>
38                <artifactId>android-maven-plugin</artifactId>
39                <version>3.9.0-rc.2</version>
40                <extensions>true</extensions>
41                <configuration>
42                    <!--<sdk>-->
43                        <!--<path>${env.ANDROID_HOME}</path>-->
44                        <!--<platform>16</platform>-->
45                    <!--</sdk>-->
46                    <undeployBeforeDeploy>true</undeployBeforeDeploy>
47                </configuration>
48            </plugin>
49        </plugins>
50    </build>
51
52    <dependencies>
53        <dependency>
54            <groupId>com.google.android</groupId>
55            <artifactId>android</artifactId>
56            <scope>provided</scope>
57            <version>4.1.1.4</version>
58        </dependency>
59    </dependencies>
60
61
62    <issueManagement>
63        <url>https://github.com/PhilJay/MPAndroidChart/issues</url>
64        <system>GitHub Issues</system>
65    </issueManagement>
66
67    <licenses>
68        <license>
69            <name>Apache License Version 2.0</name>
70            <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
71            <distribution>repo</distribution>
72        </license>
73    </licenses>
74
75    <scm>
76        <url>https://github.com/PhilJay/MPAndroidChart</url>
77        <connection>scm:git:git://github.com/PhilJay/MPAndroidChart.git</connection>
78        <developerConnection>scm:git:[email protected]:PhilJay/MPAndroidChart.git</developerConnection>
79    </scm>
80
81    <developers>
82        <developer>
83            <name>Philipp Jahoda</name>
84            <email>[email protected]</email>
85            <url>http://stackoverflow.com/users/1590502/philipp-jahoda</url>
86            <id>PhilJay</id>
87        </developer>
88    </developers>
89</project>
90