| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <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 http://maven.apache.org/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.sonatype.oss</groupId> |
| <artifactId>oss-parent</artifactId> |
| <version>7</version> |
| </parent> |
| |
| <groupId>com.jakewharton.rxrelay</groupId> |
| <artifactId>rxrelay</artifactId> |
| <version>1.1.0</version> |
| |
| <name>RxRelay</name> |
| <description>Objects that are both an Observable and an Action1.</description> |
| <inceptionYear>2015</inceptionYear> |
| |
| <scm> |
| <url>http://github.com/JakeWharton/RxRelay</url> |
| <connection>scm:git:git://github.com/JakeWharton/RxRelay.git</connection> |
| <developerConnection>scm:git:git@github.com:JakeWharton/RxRelay.git</developerConnection> |
| </scm> |
| |
| <issueManagement> |
| <system>GitHub Issues</system> |
| <url>http://github.com/JakeWharton/RxRelay/issues</url> |
| </issueManagement> |
| |
| <licenses> |
| <license> |
| <name>Apache License Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <java.version>1.6</java.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>io.reactivex</groupId> |
| <artifactId>rxjava</artifactId> |
| <version>1.1.3</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>1.10.19</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.3</version> |
| <configuration> |
| <source>${java.version}</source> |
| <target>${java.version}</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |