1<?xml version="1.0" encoding="UTF-8"?> 2<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"> 3 <modelVersion>4.0.0</modelVersion> 4 <parent> 5 <groupId>com.androidplot</groupId> 6 <artifactId>androidplot</artifactId> 7 <version>0.6.0</version> 8 <relativePath>../../pom.xml</relativePath> 9 </parent> 10 11 <groupId>com.androidplot</groupId> 12 <artifactId>androidplot-demoapp</artifactId> 13 <packaging>apk</packaging> 14 <name>AndroidPlot-DemoApp</name> 15 <!--<version>1.0-SNAPSHOT</version>--> 16 17 <dependencies> 18 <!--<dependency> 19 <groupId>com.google.android</groupId> 20 <artifactId>android</artifactId> 21 <version>4.1.1.4</version> 22 <scope>provided</scope> 23 </dependency>--> 24 <dependency> 25 <groupId>com.google.android</groupId> 26 <artifactId>android</artifactId> 27 </dependency> 28 <dependency> 29 <groupId>com.androidplot</groupId> 30 <artifactId>androidplot-core</artifactId> 31 <version>0.6.0</version> 32 <scope>compile</scope> 33 </dependency> 34 </dependencies> 35 <build> 36 <finalName>${project.artifactId}</finalName> 37 <sourceDirectory>src</sourceDirectory> 38 <pluginManagement> 39 <plugins> 40 <plugin> 41 <groupId>com.jayway.maven.plugins.android.generation2</groupId> 42 <artifactId>android-maven-plugin</artifactId> 43 <version>3.6.0</version> 44 <extensions>true</extensions> 45 </plugin> 46 </plugins> 47 </pluginManagement> 48 <plugins> 49 <plugin> 50 <groupId>com.jayway.maven.plugins.android.generation2</groupId> 51 <artifactId>android-maven-plugin</artifactId> 52 <configuration> 53 <sdk> 54 <!-- platform or api level (api level 4 = platform 1.6)--> 55 <platform>16</platform> 56 </sdk> 57 </configuration> 58 </plugin> 59 </plugins> 60 </build> 61</project>