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>com.trello</groupId> 6 <artifactId>rxlifecycle</artifactId> 7 <version>0.6.1</version> 8 <packaging>aar</packaging> 9 <name>RxLifecycle</name> 10 <description>RxLifecycle</description> 11 <url>https://github.com/trello/RxLifecycle</url> 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 <id>dlew</id> 22 <name>Dan Lew</name> 23 </developer> 24 </developers> 25 <scm> 26 <connection>scm:git:https://github.com/trello/RxLifecycle.git</connection> 27 <developerConnection>scm:git:git (a] github.com:trello/RxLifecycle.git</developerConnection> 28 <url>https://github.com/trello/RxLifecycle</url> 29 </scm> 30 <dependencies> 31 <dependency> 32 <groupId>com.jakewharton.rxbinding</groupId> 33 <artifactId>rxbinding</artifactId> 34 <version>0.4.0</version> 35 <scope>compile</scope> 36 </dependency> 37 <dependency> 38 <groupId>io.reactivex</groupId> 39 <artifactId>rxjava</artifactId> 40 <version>1.1.4</version> 41 <scope>compile</scope> 42 </dependency> 43 <dependency> 44 <groupId>com.android.support</groupId> 45 <artifactId>support-annotations</artifactId> 46 <version>23.3.0</version> 47 <scope>compile</scope> 48 </dependency> 49 </dependencies> 50 </project> 51