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.databinding</groupId> 6 <artifactId>compiler</artifactId> 7 <version>1.0-rc5</version> 8 <licenses> 9 <license> 10 <name>The Apache Software License, Version 2.0</name> 11 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 12 <distribution>repo</distribution> 13 </license> 14 </licenses> 15 <dependencies> 16 <dependency> 17 <groupId>org.jetbrains.kotlin</groupId> 18 <artifactId>kotlin-stdlib</artifactId> 19 <version>0.13.1514</version> 20 <scope>compile</scope> 21 </dependency> 22 <dependency> 23 <groupId>com.googlecode.juniversalchardet</groupId> 24 <artifactId>juniversalchardet</artifactId> 25 <version>1.0.3</version> 26 <scope>compile</scope> 27 </dependency> 28 <dependency> 29 <groupId>org.apache.commons</groupId> 30 <artifactId>commons-lang3</artifactId> 31 <version>3.3.2</version> 32 <scope>compile</scope> 33 </dependency> 34 <dependency> 35 <groupId>com.android.databinding</groupId> 36 <artifactId>baseLibrary</artifactId> 37 <version>1.0-rc5</version> 38 <scope>compile</scope> 39 </dependency> 40 <dependency> 41 <groupId>commons-codec</groupId> 42 <artifactId>commons-codec</artifactId> 43 <version>1.10</version> 44 <scope>compile</scope> 45 </dependency> 46 <dependency> 47 <groupId>com.android.databinding</groupId> 48 <artifactId>compilerCommon</artifactId> 49 <version>1.0-rc5</version> 50 <scope>compile</scope> 51 </dependency> 52 <dependency> 53 <groupId>junit</groupId> 54 <artifactId>junit</artifactId> 55 <version>4.12</version> 56 <scope>test</scope> 57 </dependency> 58 <dependency> 59 <groupId>com.tunnelvisionlabs</groupId> 60 <artifactId>antlr4</artifactId> 61 <version>4.5</version> 62 <scope>compile</scope> 63 </dependency> 64 <dependency> 65 <groupId>commons-io</groupId> 66 <artifactId>commons-io</artifactId> 67 <version>2.4</version> 68 <scope>compile</scope> 69 </dependency> 70 </dependencies> 71 </project> 72