document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>com.aaplab.android</groupId>
  6.     <artifactId>sample</artifactId>
  7.     <version>1.0</version>
  8.     <packaging>apk</packaging>
  9.     <name>sample</name>
  10.  
  11.     <properties>
  12.         <platform.version> 2.3.3
  13.             </platform.version>
  14.     </properties>
  15.  
  16.     <dependencies>
  17.         <dependency>
  18.             <groupId>com.google.android</groupId>
  19.             <artifactId>android</artifactId>
  20.             <version>${platform.version}</version>
  21.             <scope>provided</scope>
  22.         </dependency>
  23.     </dependencies>
  24.  
  25.     <build>
  26.         <plugins>
  27.             <plugin>
  28.                 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  29.                 <artifactId>android-maven-plugin</artifactId>
  30.                 <version>3.1.1</version>
  31.                 <configuration>
  32.                     <androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile>
  33.                     <assetsDirectory>${project.basedir}/assets</assetsDirectory>
  34.                     <resourceDirectory>${project.basedir}/res</resourceDirectory>
  35.                     <nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory>
  36.                     <sdk>
  37.                         <platform>10</platform>
  38.                     </sdk>
  39.                                         <undeployBeforeDeploy>true</undeployBeforeDeploy>
  40.                 </configuration>
  41.                 <extensions>true</extensions>
  42.             </plugin>
  43.  
  44.             <plugin>
  45.                 <artifactId>maven-compiler-plugin</artifactId>
  46.                 <version>2.3.2</version>
  47.                 <configuration>
  48.                     <source>1.6</source>
  49.                     <target>1.6</target>
  50.                 </configuration>
  51.             </plugin>
  52.         </plugins>
  53.     </build>
  54. </project>
');