blob: 017eeebf6401a95f3129e9299ebcf57abc08e6f1 [file] [log] [blame]
Aurimas Liutikas8d3b26a2018-05-18 11:24:27 -07001<?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>androidx.databinding</groupId>
6 <artifactId>databinding-compiler-common</artifactId>
7 <version>3.2.0-alpha16</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>androidx.databinding</groupId>
31 <artifactId>databinding-common</artifactId>
32 <version>3.2.0-alpha16</version>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>com.android.databinding</groupId>
37 <artifactId>baseLibrary</artifactId>
38 <version>3.2.0-alpha16</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.antlr</groupId>
43 <artifactId>antlr4</artifactId>
44 <version>4.5.3</version>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>commons-io</groupId>
49 <artifactId>commons-io</artifactId>
50 <version>2.4</version>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>com.googlecode.juniversalchardet</groupId>
55 <artifactId>juniversalchardet</artifactId>
56 <version>1.0.3</version>
57 <scope>compile</scope>
58 </dependency>
59 <dependency>
60 <groupId>com.google.guava</groupId>
61 <artifactId>guava</artifactId>
62 <version>23.0</version>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>com.squareup</groupId>
67 <artifactId>javapoet</artifactId>
68 <version>1.8.0</version>
69 <scope>compile</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.jetbrains.kotlin</groupId>
73 <artifactId>kotlin-stdlib-jre8</artifactId>
74 <version>1.2.0</version>
75 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>com.google.code.gson</groupId>
79 <artifactId>gson</artifactId>
80 <version>2.8.0</version>
81 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>com.android.tools</groupId>
85 <artifactId>annotations</artifactId>
86 <version>24.5.0</version>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>com.android.tools.build.jetifier</groupId>
91 <artifactId>jetifier-core</artifactId>
92 <version>1.0.0-alpha05</version>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>junit</groupId>
97 <artifactId>junit</artifactId>
98 <version>4.12</version>
99 <scope>test</scope>
100 </dependency>
101 </dependencies>
102</project>