Guest User

Untitled

a guest
Oct 22nd, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.15 KB | None | 0 0
  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>ru.realweb</groupId>
  6.     <artifactId>android-cluster-sample</artifactId>
  7.     <version>1.0.0-SNAPSHOT</version>
  8.     <packaging>apk</packaging>
  9.     <name>Android cluster sample</name>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>android</groupId>
  14.             <artifactId>android</artifactId>
  15.             <version>4.0_r3</version>
  16.             <scope>provided</scope>
  17.         </dependency>
  18.         <dependency>
  19.             <groupId>com.google.android.maps</groupId>
  20.             <artifactId>maps</artifactId>
  21.             <version>16_r3</version>
  22.             <scope>provided</scope>
  23.         </dependency>
  24.         <dependency>
  25.             <groupId>ru.realweb</groupId>
  26.             <artifactId>android-cluster-lib</artifactId>
  27.             <version>2</version>
  28.             <type>apklib</type>
  29.         </dependency>
  30.     </dependencies>
  31.     <build>
  32.         <finalName>${project.artifactId}</finalName>
  33.         <sourceDirectory>src</sourceDirectory>
  34.         <pluginManagement>
  35.             <plugins>
  36.                 <plugin>
  37.                     <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  38.                     <artifactId>android-maven-plugin</artifactId>
  39.                     <version>3.3.2</version>
  40.                     <extensions>true</extensions>
  41.                 </plugin>
  42.             </plugins>
  43.         </pluginManagement>
  44.         <plugins>
  45.             <plugin>
  46.                 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  47.                 <artifactId>android-maven-plugin</artifactId>
  48.                 <configuration>
  49.                     <sdk>
  50.                         <!-- platform or api level (api level 4 = platform 1.6)-->
  51.                         <platform>15</platform>
  52.                     </sdk>
  53.                 </configuration>
  54.             </plugin>
  55.         </plugins>
  56.     </build>
  57. </project>
Advertisement
Add Comment
Please, Sign In to add comment