Home | History | Annotate | Download | only in 1.0.0-alpha1
      1 <?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.slice</groupId>
      6   <artifactId>slice-view</artifactId>
      7   <version>1.0.0-alpha1</version>
      8   <packaging>aar</packaging>
      9   <name>Slice views</name>
     10   <description>A library that handles rendering of slice content into supported templates</description>
     11   <url>http://developer.android.com/tools/extras/support-library.html</url>
     12   <inceptionYear>2017</inceptionYear>
     13   <licenses>
     14     <license>
     15       <name>The Apache Software License, Version 2.0</name>
     16       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     17       <distribution>repo</distribution>
     18     </license>
     19   </licenses>
     20   <developers>
     21     <developer>
     22       <name>The Android Open Source Project</name>
     23     </developer>
     24   </developers>
     25   <scm>
     26     <connection>scm:git:https://android.googlesource.com/platform/frameworks/support</connection>
     27     <url>http://source.android.com</url>
     28   </scm>
     29   <dependencies>
     30     <dependency>
     31       <groupId>androidx.lifecycle</groupId>
     32       <artifactId>lifecycle-livedata-core</artifactId>
     33       <version>2.0.0-alpha1</version>
     34       <type>aar</type>
     35       <scope>compile</scope>
     36       <exclusions>
     37         <exclusion>
     38           <artifactId>*</artifactId>
     39           <groupId>androidx.annotation</groupId>
     40         </exclusion>
     41       </exclusions>
     42     </dependency>
     43     <dependency>
     44       <groupId>androidx.slice</groupId>
     45       <artifactId>slice-core</artifactId>
     46       <version>1.0.0-alpha1</version>
     47       <type>aar</type>
     48       <scope>compile</scope>
     49     </dependency>
     50     <dependency>
     51       <groupId>androidx.recyclerview</groupId>
     52       <artifactId>recyclerview</artifactId>
     53       <version>1.0.0-alpha1</version>
     54       <type>aar</type>
     55       <scope>compile</scope>
     56     </dependency>
     57   </dependencies>
     58 </project>
     59