1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 ~ Copyright 2012 AndroidPlot.com 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/xsd/maven-4.0.0.xsd"> 19 <modelVersion>4.0.0</modelVersion> 20 <parent> 21 <groupId>org.sonatype.oss</groupId> 22 <artifactId>oss-parent</artifactId> 23 <version>7</version> 24 </parent> 25 26 <groupId>com.androidplot</groupId> 27 <artifactId>androidplot</artifactId> 28 <version>0.6.0</version> 29 <name>AndroidPlot-Parent</name> 30 <description>A charting library for the Android platform</description> 31 <url>http://androidplot.com</url> 32 <inceptionYear>2010</inceptionYear> 33 <organization> 34 <name>androidplot.com</name> 35 <url>http://androidplot.com</url> 36 </organization> 37 <licenses> 38 <license> 39 <name>The Apache Software License, Version 2.0</name> 40 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 41 <distribution>repo</distribution> 42 <comments>A business-friendly OSS license</comments> 43 </license> 44 </licenses> 45 <developers> 46 <developer> 47 <id>Nick</id> 48 <name>Nick Fellows</name> 49 <email>nick@androidplot.com</email> 50 <organization>AndroidPlot</organization> 51 <organizationUrl>http://androidplot.com</organizationUrl> 52 <roles> 53 <role>architect</role> 54 <role>developer</role> 55 </roles> 56 </developer> 57 <developer> 58 <id>Tim</id> 59 <name>Tim Hepner</name> 60 <email>tim@androidplot.com</email> 61 <organization>AndroidPlot</organization> 62 <organizationUrl>http://androidplot.com</organizationUrl> 63 <roles> 64 <role>developer</role> 65 </roles> 66 </developer> 67 </developers> 68 <packaging>pom</packaging> 69 70 <properties> 71 <!--<applicationVersion>0.5.1-SNAPSHOT</applicationVersion>--> 72 <examplesDir>Examples</examplesDir> 73 <!--<obfuscatedJarPath>${project.build.directory}/obfuscated</obfuscatedJarPath> 74 <obfuscatedJarName>${project.build.finalName}.jar</obfuscatedJarName>--> 75 </properties> 76 77 <modules> 78 <module>AndroidPlot-Core</module> 79 <!--<module>Examples</module>--> 80 <module>Examples/DemoApp</module> 81 </modules> 82 83 <!--<repositories> 84 <repository> 85 <id>java.net2</id> 86 <url>http://download.java.net/maven/2/</url> 87 </repository> 88 </repositories>--> 89 90 <scm> 91 <connection>scm:git:https://bitbucket.org/androidplot/androidplot.git</connection> 92 <developerConnection>scm:git:https://bitbucket.org/androidplot/androidplot.git</developerConnection> 93 <url>https://bitbucket.org/androidplot/androidplot.git</url> 94 <tag>0.6.0</tag> 95 </scm> 96 97 <build> 98 <plugins> 99 <plugin> 100 <groupId>org.apache.maven.plugins</groupId> 101 <artifactId>maven-release-plugin</artifactId> 102 <version>2.4</version> 103 <configuration> 104 <tagNameFormat>v@{project.version}</tagNameFormat> 105 <!-- Added to fix an issue with hidden gpg signing prompts 106 described here: http://jira.codehaus.org/browse/MGPG-9--> 107 <mavenExecutorId>forked-path</mavenExecutorId> 108 </configuration> 109 </plugin> 110 <plugin> 111 <artifactId>maven-deploy-plugin</artifactId> 112 <version>2.7</version> 113 <!--<configuration> 114 <skip>true</skip> 115 </configuration>--> 116 </plugin> 117 </plugins> 118 </build> 119 120 <!-- dependencies to be inherited --> 121 <dependencyManagement> 122 <dependencies> 123 <dependency> 124 <groupId>com.google.android</groupId> 125 <artifactId>android</artifactId> 126 <version>4.1.1.4</version> 127 <scope>provided</scope> 128 </dependency> 129 </dependencies> 130 </dependencyManagement> 131</project>