Skip to content

Commit 0b404aa

Browse files
committed
Mavenized MPChartLib
1 parent 92e1ae9 commit 0b404aa

File tree

2 files changed

+98
-0
lines changed

2 files changed

+98
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ proguard/
3434
.gradle
3535

3636
build/
37+
38+
# maven
39+
target/

MPChartLib/pom.xml

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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+
60+
<dependency>
61+
<groupId>com.nineoldandroids</groupId>
62+
<artifactId>library</artifactId>
63+
<version>2.4.0</version>
64+
</dependency>
65+
</dependencies>
66+
67+
68+
<issueManagement>
69+
<url>https://github.com/PhilJay/MPAndroidChart/issues</url>
70+
<system>GitHub Issues</system>
71+
</issueManagement>
72+
73+
<licenses>
74+
<license>
75+
<name>Apache License Version 2.0</name>
76+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
77+
<distribution>repo</distribution>
78+
</license>
79+
</licenses>
80+
81+
<scm>
82+
<url>https://github.com/PhilJay/MPAndroidChart</url>
83+
<connection>scm:git:git://github.com/PhilJay/MPAndroidChart.git</connection>
84+
<developerConnection>scm:git:[email protected]:PhilJay/MPAndroidChart.git</developerConnection>
85+
</scm>
86+
87+
<developers>
88+
<developer>
89+
<name>Philipp Jahoda</name>
90+
<email>[email protected]</email>
91+
<url>http://stackoverflow.com/users/1590502/philipp-jahoda</url>
92+
<id>PhilJay</id>
93+
</developer>
94+
</developers>
95+
</project>

0 commit comments

Comments
 (0)