1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 4 <modelVersion>4.0.0</modelVersion> 5 <groupId>com.android.tools.build</groupId> 6 <artifactId>manifest-merger</artifactId> 7 <version>23.2.1</version> 8 <dependencies> 9 <dependency> 10 <groupId>net.sf.kxml</groupId> 11 <artifactId>kxml2</artifactId> 12 <version>2.3.0</version> 13 <scope>compile</scope> 14 </dependency> 15 <dependency> 16 <groupId>org.mockito</groupId> 17 <artifactId>mockito-all</artifactId> 18 <version>1.9.5</version> 19 <scope>test</scope> 20 </dependency> 21 <dependency> 22 <groupId>junit</groupId> 23 <artifactId>junit</artifactId> 24 <version>3.8.1</version> 25 <scope>test</scope> 26 </dependency> 27 <dependency> 28 <groupId>com.android.tools</groupId> 29 <artifactId>sdklib</artifactId> 30 <version>23.2.1</version> 31 <scope>compile</scope> 32 </dependency> 33 <dependency> 34 <groupId>com.android.tools</groupId> 35 <artifactId>sdk-common</artifactId> 36 <version>23.2.1</version> 37 <scope>compile</scope> 38 </dependency> 39 <dependency> 40 <groupId>com.android.tools</groupId> 41 <artifactId>common</artifactId> 42 <version>23.2.1</version> 43 <scope>compile</scope> 44 </dependency> 45 </dependencies> 46 </project> 47