blob: 8e024662a8152943eabd80e1266eb0f4adb470ec [file] [log] [blame]
Allena124ae52018-01-16 15:29:10 -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>migration</artifactId>
Alan Viverette059fff52018-02-22 15:56:39 -05007 <version>1.1.0-alpha2</version>
Allena124ae52018-01-16 15:29:10 -08008 <name>Android Room Migration</name>
9 <description>Android Room Migration</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>
Allena124ae52018-01-16 15:29:10 -080030 <groupId>org.jetbrains.kotlin</groupId>
31 <artifactId>kotlin-stdlib</artifactId>
Alan Viverette059fff52018-02-22 15:56:39 -050032 <version>1.2.20</version>
Allena124ae52018-01-16 15:29:10 -080033 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>com.google.code.gson</groupId>
37 <artifactId>gson</artifactId>
38 <version>2.8.0</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <version>4.12</version>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
48 <groupId>com.intellij</groupId>
49 <artifactId>annotations</artifactId>
50 <version>12.0</version>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.mockito</groupId>
55 <artifactId>mockito-core</artifactId>
56 <version>2.7.6</version>
57 <scope>test</scope>
58 </dependency>
Alan Viverette059fff52018-02-22 15:56:39 -050059 <dependency>
60 <groupId>android.arch.persistence.room</groupId>
61 <artifactId>common</artifactId>
62 <version>1.1.0-alpha2</version>
63 <scope>compile</scope>
64 </dependency>
Allena124ae52018-01-16 15:29:10 -080065 </dependencies>
66</project>