1<?xml version="1.0" encoding="UTF-8"?> 2<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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</groupId> 6 <artifactId>sdklib</artifactId> 7 <version>31.7.0-alpha07</version> 8 <name>com.android.tools.sdklib</name> 9 <description>A library to parse and download the Android SDK.</description> 10 <url>http://tools.android.com/</url> 11 <licenses> 12 <license> 13 <name>The Apache Software License, Version 2.0</name> 14 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 15 <distribution>repo</distribution> 16 </license> 17 </licenses> 18 <developers> 19 <developer> 20 <name>The Android Open Source Project</name> 21 </developer> 22 </developers> 23 <dependencies> 24 <dependency> 25 <groupId>com.android.tools</groupId> 26 <artifactId>repository</artifactId> 27 <version>31.7.0-alpha07</version> 28 <scope>compile</scope> 29 </dependency> 30 <dependency> 31 <groupId>com.android.tools</groupId> 32 <artifactId>common</artifactId> 33 <version>31.7.0-alpha07</version> 34 <scope>runtime</scope> 35 </dependency> 36 <dependency> 37 <groupId>com.android.tools</groupId> 38 <artifactId>dvlib</artifactId> 39 <version>31.7.0-alpha07</version> 40 <scope>runtime</scope> 41 </dependency> 42 <dependency> 43 <groupId>com.android.tools.layoutlib</groupId> 44 <artifactId>layoutlib-api</artifactId> 45 <version>31.7.0-alpha07</version> 46 <scope>runtime</scope> 47 </dependency> 48 <dependency> 49 <groupId>com.google.code.gson</groupId> 50 <artifactId>gson</artifactId> 51 <version>2.10.1</version> 52 <scope>runtime</scope> 53 </dependency> 54 <dependency> 55 <groupId>org.apache.commons</groupId> 56 <artifactId>commons-compress</artifactId> 57 <version>1.21</version> 58 <scope>runtime</scope> 59 </dependency> 60 <dependency> 61 <groupId>org.apache.httpcomponents</groupId> 62 <artifactId>httpcore</artifactId> 63 <version>4.4.16</version> 64 <scope>runtime</scope> 65 </dependency> 66 <dependency> 67 <groupId>org.apache.httpcomponents</groupId> 68 <artifactId>httpmime</artifactId> 69 <version>4.5.6</version> 70 <scope>runtime</scope> 71 </dependency> 72 <dependency> 73 <groupId>org.glassfish.jaxb</groupId> 74 <artifactId>jaxb-runtime</artifactId> 75 <version>2.3.2</version> 76 <scope>runtime</scope> 77 </dependency> 78 </dependencies> 79</project> 80