Guest User

lib

a guest
Oct 22nd, 2012
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.85 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-lib</artifactId>
  7.     <packaging>apklib</packaging>
  8.     <name>Android map clustering library</name>
  9.     <version>2</version>
  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.     </dependencies>
  25.  
  26.     <build>
  27.         <plugins>
  28.             <plugin>
  29.                 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  30.                 <artifactId>android-maven-plugin</artifactId>
  31.                 <extensions>true</extensions>
  32.                 <version>3.3.2</version>
  33.             </plugin>
  34.         </plugins>
  35.         <pluginManagement>
  36.             <plugins>
  37.                 <plugin>
  38.                     <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  39.                     <artifactId>android-maven-plugin</artifactId>
  40.                     <configuration>
  41.                         <sdk>
  42.                             <platform>15</platform>
  43.                         </sdk>
  44.                         <undeployBeforeDeploy>true</undeployBeforeDeploy>
  45.                     </configuration>
  46.                 </plugin>
  47.             </plugins>
  48.         </pluginManagement>
  49.     </build>
  50.  
  51. </project>
Advertisement
Add Comment
Please, Sign In to add comment