replaying-share-kotlin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jakewharton.rx2</groupId> <artifactId>replaying-share-kotlin</artifactId> <version>2.2.0</version> </dependency>
<?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> <properties> <kotlin.version>1.0.0</kotlin.version> </properties> <parent> <groupId>com.jakewharton.rx2</groupId> <artifactId>replaying-share-parent</artifactId> <version>2.2.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>replaying-share-kotlin</artifactId> <name>RxJava Replaying Share (Kotlin Extensions)</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>replaying-share</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> </plugin> </plugins> </build> </project>