1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>com.android.databinding</groupId> 5 <artifactId>compilerCommon</artifactId> 6 <version>2.1.3</version> 7 <dependencies> 8 <dependency> 9 <groupId>com.android.databinding</groupId> 10 <artifactId>baseLibrary</artifactId> 11 <version>2.1.3</version> 12 <scope>runtime</scope> 13 </dependency> 14 <dependency> 15 <groupId>com.tunnelvisionlabs</groupId> 16 <artifactId>antlr4</artifactId> 17 <version>4.5</version> 18 <scope>runtime</scope> 19 </dependency> 20 <dependency> 21 <groupId>commons-io</groupId> 22 <artifactId>commons-io</artifactId> 23 <version>2.4</version> 24 <scope>runtime</scope> 25 </dependency> 26 <dependency> 27 <groupId>com.googlecode.juniversalchardet</groupId> 28 <artifactId>juniversalchardet</artifactId> 29 <version>1.0.3</version> 30 <scope>runtime</scope> 31 </dependency> 32 <dependency> 33 <groupId>com.google.guava</groupId> 34 <artifactId>guava</artifactId> 35 <version>17.0</version> 36 <scope>runtime</scope> 37 </dependency> 38 </dependencies> 39 <description>Common library that can be shared between different build tools</description> 40 <url>http://tools.android.com/</url> 41 <name>com.android.databinding.compilerCommon</name> 42 <licenses> 43 <license> 44 <name>The Apache Software License, Version 2.0</name> 45 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 46 <distribution>repo</distribution> 47 </license> 48 </licenses> 49 <developers> 50 <developer> 51 <name>The Android Open Source Project</name> 52 </developer> 53 </developers> 54 <scm> 55 <connection>git://android.googlesource.com/platform/tools/base.git</connection> 56 <url>https://android.googlesource.com/platform/tools/base</url> 57 </scm> 58 </project> 59