Advertisement
Nizlor

pom.xml #2567895743

Apr 26th, 2015
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>com.myapp</groupId>
  8.     <artifactId>MyApp<artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>android</groupId>
  14.             <artifactId>android</artifactId>
  15.             <version>5.0.1_r2</version>
  16.             <scope>provided</scope>
  17.         </dependency>
  18.         <dependency>
  19.             <groupId>junit</groupId>
  20.             <artifactId>junit</artifactId>
  21.             <version>4.11</version>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>com.squareup</groupId>
  25.             <artifactId>otto</artifactId>
  26.             <version>1.3.5</version>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>com.android.support</groupId>
  30.             <artifactId>support-v4</artifactId>
  31.             <version>21.0.3</version>
  32.             <scope>compile</scope>
  33.             <type>aar</type>
  34.         </dependency>
  35.         <dependency>
  36.             <groupId>com.android.support</groupId>
  37.             <artifactId>appcompat-v7</artifactId>
  38.             <version>21.0.3</version>
  39.             <type>aar</type>
  40.             <scope>compile</scope>
  41.             <exclusions>
  42.                 <exclusion>  <!-- It tries to include it as jar.. -->
  43.                     <groupId>com.android.support</groupId>
  44.                     <artifactId>support-v4</artifactId>
  45.                 </exclusion>
  46.             </exclusions>
  47.         </dependency>
  48.     </dependencies>
  49.  
  50.     <build>
  51.         <sourceDirectory>src</sourceDirectory>
  52.         <plugins>
  53.             <plugin>
  54.                 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  55.                 <artifactId>android-maven-plugin</artifactId>
  56.                 <extensions>true</extensions>
  57.                 <version>3.6.1</version>
  58.                 <configuration>
  59.                     <sdk>
  60.                         <platform>18</platform>
  61.                     </sdk>
  62.                 </configuration>
  63.             </plugin>
  64.         </plugins>
  65.     </build>
  66. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement