blob: c0a8e6510570f6da2e91d17fb394186a7057f868 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com</groupId>
<artifactId>myapklib</artifactId>
<name>MyApklib</name>
<packaging>apklib</packaging>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>com</groupId>
<artifactId>myjar</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<sdk>
<platform>2</platform>
</sdk>
</configuration>
</plugin>
</plugins>
</build>
</project>