<?xml version="1.0" encoding="UTF-8"?>
<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"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>be.mickverm.widget</groupId>
  <artifactId>recyclerview</artifactId>
  <version>1.2.0</version>
  <packaging>aar</packaging>
  <name>RecyclerView</name>
  <description>EmptiableRecyclerView widget, adapter base classes and useful ItemDecorations.</description>
  <url>https://github.com/mickverm/Android-Widgets</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>Mickverm</id>
      <name>Michiel Vermeersch</name>
      <email>mick.vermeersch@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/mickverm/Android-Widgets.git</connection>
    <developerConnection>https://github.com/mickverm/Android-Widgets.git</developerConnection>
    <url>https://github.com/mickverm/Android-Widgets</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.3.50</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>androidx.recyclerview</groupId>
      <artifactId>recyclerview</artifactId>
      <version>1.0.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>androidx.paging</groupId>
      <artifactId>paging-runtime-ktx</artifactId>
      <version>2.1.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>io.reactivex.rxjava2</groupId>
      <artifactId>rxjava</artifactId>
      <version>2.2.11</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>be.mickverm.common</groupId>
      <artifactId>common</artifactId>
      <version>0.1.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.robolectric</groupId>
      <artifactId>robolectric</artifactId>
      <version>4.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
