rxjava-extras
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmoten</groupId> <artifactId>rxjava-extras</artifactId> <version>0.8.0.20</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.davidmoten</groupId> <artifactId>sonatype-parent</artifactId> <version>0.1</version> </parent> <artifactId>rxjava-extras</artifactId> <version>0.8.0.20</version> <name>${project.artifactId}</name> <description>RxJava utilities</description> <packaging>jar</packaging> <url>http://github.com/davidmoten/rxjava-extras</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.target>1.6</maven.compiler.target> <rxjava.version>1.3.8</rxjava.version> <jmh.version>1.36</jmh.version> <exec.version>3.1.0</exec.version> <slf4j.version>1.7.36</slf4j.version> <findbugs.version>2.5.4</findbugs.version> <javadoc.version>3.4.1</javadoc.version> <pmd.version>3.19.0</pmd.version> <jdepend.version>2.0</jdepend.version> <project.info.version>3.1.1</project.info.version> <taglist.version>3.0.0</taglist.version> <m3.site.version>3.12.1</m3.site.version> <changelog.version>2.2</changelog.version> <coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/davidmoten/rxjava-extras</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/davidmoten/rxjava-extras/issues</url> </issueManagement> <inceptionYear>2013</inceptionYear> <developers> <developer> <id>dave</id> <name>Dave Moten</name> <url>https://github.com/davidmoten/</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+10</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/davidmoten/rxjava-extras.git</connection> <developerConnection>scm:git:https://github.com/davidmoten/rxjava-extras.git</developerConnection> <url>scm:git:https://github.com:davidmoten/rxjava-extras.git</url> <tag>0.8.0.20</tag> </scm> <dependencies> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <version>${rxjava.version}</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.mapdb</groupId> <artifactId>thread-weaver</artifactId> <version>3.0.mapdb</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>23.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.esotericsoftware</groupId> <artifactId>kryo</artifactId> <version>3.0.3</version> <optional>true</optional> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>junit-extras</artifactId> <version>0.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>${maven.compiler.target}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.8</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <excludes> <exclude>**/FileBasedSPSCQueueMemoryMapped*</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${m3.site.version}</version> <executions> <execution> <id>attach-descriptor</id> <goals> <goal>attach-descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <!-- this one should go first so that it is available to other plugins when they run --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${pmd.version}</version> <configuration> <targetJdk>${maven.compiler.target}</targetJdk> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${project.info.version}</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.version}</version> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <!-- commented this plugin out because cannot run offline (e.g. at home) --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> <version>${changelog.version}</version> <configuration> <username>${svn.username}</username> <password>${svn.password}</password> </configuration> </plugin> --> </plugins> </reporting> <profiles> <profile> <id>benchmark</id> <dependencies> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.version}</version> <executions> <execution> <id>run-benchmarks</id> <phase>integration-test</phase> <goals> <goal>exec</goal> </goals> <configuration> <classpathScope>test</classpathScope> <executable>java</executable> <arguments> <argument>-classpath</argument> <classpath /> <argument>org.openjdk.jmh.Main</argument> <!-- -h for help --> <argument>-f</argument> <argument>1</argument> <argument>-i</argument> <argument>10</argument> <argument>-wi</argument> <argument>8</argument> <argument>-jvmArgs</argument> <argument>-Xmx512m</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>rxjava-snapshots</id> <name>rxjava-snapshots</name> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> <url>https://oss.jfrog.org/libs-snapshot</url> </repository> </repositories> </project>