1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <!-- This module was also published with a richer model, Gradle metadata, --> 4 <!-- which should be used instead. Do not delete the following line which --> 5 <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> 6 <!-- that they should prefer consuming it instead. --> 7 <!-- do_not_remove: published-with-gradle-metadata --> 8 <modelVersion>4.0.0</modelVersion> 9 <groupId>androidx.room</groupId> 10 <artifactId>room-paging-android</artifactId> 11 <version>2.8.0-alpha01</version> 12 <packaging>aar</packaging> 13 <name>Room Paging</name> 14 <description>Room Paging integration</description> 15 <url>https://developer.android.com/jetpack/androidx/releases/room#2.8.0-alpha01</url> 16 <inceptionYear>2021</inceptionYear> 17 <organization> 18 <name>The Android Open Source Project</name> 19 </organization> 20 <licenses> 21 <license> 22 <name>The Apache Software License, Version 2.0</name> 23 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 24 <distribution>repo</distribution> 25 </license> 26 </licenses> 27 <developers> 28 <developer> 29 <name>The Android Open Source Project</name> 30 </developer> 31 </developers> 32 <scm> 33 <connection>scm:git:https://android.googlesource.com/platform/frameworks/support</connection> 34 <url>https://cs.android.com/androidx/platform/frameworks/support</url> 35 </scm> 36 <dependencyManagement> 37 <dependencies> 38 <dependency> 39 <groupId>androidx.room</groupId> 40 <artifactId>room-common</artifactId> 41 <version>2.8.0-alpha01</version> 42 </dependency> 43 <dependency> 44 <groupId>androidx.room</groupId> 45 <artifactId>room-compiler</artifactId> 46 <version>2.8.0-alpha01</version> 47 </dependency> 48 <dependency> 49 <groupId>androidx.room</groupId> 50 <artifactId>room-compiler-processing</artifactId> 51 <version>2.8.0-alpha01</version> 52 </dependency> 53 <dependency> 54 <groupId>androidx.room</groupId> 55 <artifactId>room-compiler-processing-testing</artifactId> 56 <version>2.8.0-alpha01</version> 57 </dependency> 58 <dependency> 59 <groupId>androidx.room</groupId> 60 <artifactId>room-external-antlr</artifactId> 61 <version>2.8.0-alpha01</version> 62 </dependency> 63 <dependency> 64 <groupId>androidx.room</groupId> 65 <artifactId>room-guava</artifactId> 66 <version>2.8.0-alpha01</version> 67 </dependency> 68 <dependency> 69 <groupId>androidx.room</groupId> 70 <artifactId>room-gradle-plugin</artifactId> 71 <version>2.8.0-alpha01</version> 72 </dependency> 73 <dependency> 74 <groupId>androidx.room</groupId> 75 <artifactId>room-ktx</artifactId> 76 <version>2.8.0-alpha01</version> 77 </dependency> 78 <dependency> 79 <groupId>androidx.room</groupId> 80 <artifactId>room-migration</artifactId> 81 <version>2.8.0-alpha01</version> 82 </dependency> 83 <dependency> 84 <groupId>androidx.room</groupId> 85 <artifactId>room-paging-guava</artifactId> 86 <version>2.8.0-alpha01</version> 87 </dependency> 88 <dependency> 89 <groupId>androidx.room</groupId> 90 <artifactId>room-paging-rxjava2</artifactId> 91 <version>2.8.0-alpha01</version> 92 </dependency> 93 <dependency> 94 <groupId>androidx.room</groupId> 95 <artifactId>room-paging-rxjava3</artifactId> 96 <version>2.8.0-alpha01</version> 97 </dependency> 98 <dependency> 99 <groupId>androidx.room</groupId> 100 <artifactId>room-runtime</artifactId> 101 <version>2.8.0-alpha01</version> 102 </dependency> 103 <dependency> 104 <groupId>androidx.room</groupId> 105 <artifactId>room-rxjava2</artifactId> 106 <version>2.8.0-alpha01</version> 107 </dependency> 108 <dependency> 109 <groupId>androidx.room</groupId> 110 <artifactId>room-rxjava3</artifactId> 111 <version>2.8.0-alpha01</version> 112 </dependency> 113 <dependency> 114 <groupId>androidx.room</groupId> 115 <artifactId>room-testing</artifactId> 116 <version>2.8.0-alpha01</version> 117 </dependency> 118 <dependency> 119 <groupId>org.jetbrains.kotlin</groupId> 120 <artifactId>kotlin-stdlib</artifactId> 121 <version>2.1.10</version> 122 </dependency> 123 </dependencies> 124 </dependencyManagement> 125 <dependencies> 126 <dependency> 127 <groupId>androidx.room</groupId> 128 <artifactId>room-runtime</artifactId> 129 <version>[2.8.0-alpha01]</version> 130 <scope>compile</scope> 131 </dependency> 132 <dependency> 133 <groupId>org.jetbrains.kotlin</groupId> 134 <artifactId>kotlin-stdlib</artifactId> 135 <scope>compile</scope> 136 </dependency> 137 <dependency> 138 <groupId>androidx.paging</groupId> 139 <artifactId>paging-common-android</artifactId> 140 <version>3.3.2</version> 141 <scope>compile</scope> 142 </dependency> 143 </dependencies> 144</project>