blob: e3de4cbaefebe42d6f617729d004841736dce6c0 [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>myapklib6</artifactId>
<name>MyApklib6</name>
<packaging>apklib</packaging>
<version>2.0</version>
<properties>
<android.sdk.platform>2</android.sdk.platform>
</properties>
<dependencies>
<dependency>
<groupId>com</groupId>
<artifactId>myapklib7</artifactId>
<version>1.0</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>myapklib5</artifactId>
<version>1.0</version>
<type>apklib</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>