blob: 44dff56a6c9d50b3a3329cf3685c3353e3cc98af [file] [log] [blame]
Aurimas Liutikas31c92c62018-02-27 10:38:23 -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>android.arch.persistence.room</groupId>
6 <artifactId>compiler</artifactId>
7 <version>1.1.0-alpha1</version>
8 <name>Android Room Compiler</name>
9 <description>Android Room annotation processor</description>
10 <url>https://developer.android.com/topic/libraries/architecture/index.html</url>
11 <inceptionYear>2017</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>scm:git:https://android.googlesource.com/platform/frameworks/support</connection>
26 <url>http://source.android.com</url>
27 </scm>
28 <dependencies>
29 <dependency>
30 <groupId>android.arch.persistence.room</groupId>
31 <artifactId>common</artifactId>
32 <version>1.1.0-alpha1</version>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>android.arch.persistence.room</groupId>
37 <artifactId>migration</artifactId>
38 <version>1.1.0-alpha1</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.jetbrains.kotlin</groupId>
43 <artifactId>kotlin-stdlib</artifactId>
44 <version>1.2.0</version>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>com.google.auto</groupId>
49 <artifactId>auto-common</artifactId>
50 <version>0.6</version>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>com.squareup</groupId>
55 <artifactId>javapoet</artifactId>
56 <version>1.8.0</version>
57 <scope>compile</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.antlr</groupId>
61 <artifactId>antlr4</artifactId>
62 <version>4.5.3</version>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.xerial</groupId>
67 <artifactId>sqlite-jdbc</artifactId>
68 <version>3.20.1</version>
69 <scope>compile</scope>
70 </dependency>
71 <dependency>
72 <groupId>commons-codec</groupId>
73 <artifactId>commons-codec</artifactId>
74 <version>1.10</version>
75 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>com.google.testing.compile</groupId>
79 <artifactId>compile-testing</artifactId>
80 <version>0.11</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>android.arch.paging</groupId>
85 <artifactId>common</artifactId>
86 <version>1.0.0-alpha5</version>
87 <scope>test</scope>
88 </dependency>
89 <dependency>
90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <version>4.12</version>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>com.intellij</groupId>
97 <artifactId>annotations</artifactId>
98 <version>12.0</version>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>javax.annotation</groupId>
103 <artifactId>javax.annotation-api</artifactId>
104 <version>1.2</version>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.mockito</groupId>
109 <artifactId>mockito-core</artifactId>
110 <version>2.7.6</version>
111 <scope>test</scope>
112 </dependency>
113 </dependencies>
114</project>