blob: 5564bed27e81e159a5053fc4fb3f383fa78b05ab [file] [log] [blame]
Jerome Dochez11dcdf82016-12-15 16:14:58 -08001<?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>compilerCommon</artifactId>
7 <version>2.2.4</version>
8 <name>Data Binding Compiler Common</name>
9 <description>Common library that can be shared between different build tools</description>
10 <url>http://tools.android.com</url>
11 <inceptionYear>2007</inceptionYear>
12 <licenses>
13 <license>
14 <name>The Apache Software License, Version 2.0</name>
15 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
16 <distribution>repo</distribution>
17 </license>
18 </licenses>
19 <developers>
20 <developer>
21 <name>The Android Open Source Project</name>
22 </developer>
23 </developers>
24 <scm>
25 <connection>git://android.googlesource.com/platform/tools/base.git</connection>
26 <url>https://android.googlesource.com/platform/tools/base</url>
27 </scm>
28 <dependencies>
29 <dependency>
30 <groupId>com.android.databinding</groupId>
31 <artifactId>baseLibrary</artifactId>
32 <version>2.2.4</version>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.antlr</groupId>
37 <artifactId>antlr4</artifactId>
38 <version>4.5.3</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>commons-io</groupId>
43 <artifactId>commons-io</artifactId>
44 <version>2.4</version>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>com.googlecode.juniversalchardet</groupId>
49 <artifactId>juniversalchardet</artifactId>
50 <version>1.0.3</version>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>com.google.guava</groupId>
55 <artifactId>guava</artifactId>
56 <version>17.0</version>
57 <scope>compile</scope>
58 </dependency>
59 <dependency>
60 <groupId>com.android.tools</groupId>
61 <artifactId>annotations</artifactId>
62 <version>24.5.0</version>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>junit</groupId>
67 <artifactId>junit</artifactId>
68 <version>4.12</version>
69 <scope>test</scope>
70 </dependency>
71 </dependencies>
72</project>