xchange-stream-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>info.bitrich.xchange-stream</groupId> <artifactId>xchange-stream-parent</artifactId> <version>4.4.2</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> <groupId>info.bitrich.xchange-stream</groupId> <artifactId>xchange-stream-parent</artifactId> <packaging>pom</packaging> <version>4.4.2</version> <modules> <module>xchange-stream-core</module> <module>xchange-stream-service-pubnub</module> <module>xchange-stream-service-pusher</module> <module>xchange-stream-service-netty</module> <module>xchange-stream-service-wamp</module> <module>xchange-stream-service-core</module> <module>xchange-stream-bitstamp</module> <module>xchange-stream-cexio</module> <module>xchange-stream-okcoin</module> <module>xchange-stream-poloniex</module> <module>xchange-stream-coinmate</module> <module>xchange-stream-coinbasepro</module> <module>xchange-stream-bitfinex</module> <module>xchange-stream-bitmex</module> <module>xchange-stream-poloniex2</module> <module>xchange-stream-bitflyer</module> <module>xchange-stream-gemini</module> <module>xchange-stream-binance</module> <module>xchange-stream-hitbtc</module> <module>xchange-stream-bankera</module> <module>xchange-stream-kraken</module> <module>xchange-stream-lgo</module> </modules> <name>xchange-stream</name> <description> XChange-stream is a Java library providing a simple and consistent streaming API for interacting with Bitcoin and other crypto currency exchanges via WebSocket protocol. </description> <url>https://github.com/bitrich-info/xchange-stream</url> <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> <developers> <developer> <name>Zdenek Dolezal</name> <email>zdenek.dolezal@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:bitrich-info/xchange-stream.git</connection> <developerConnection>scm:git:git@github.com:bitrich-info/xchange-stream.git</developerConnection> <url>git@github.com:bitrich-info/xchange-stream.git</url> <tag>xchange-stream-parent-4.4.2</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <repositories> <!-- For XChange SNAPSHOT dependency --> <repository> <id>sonatype-oss-snapshot</id> <snapshots /> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <properties> <xchange.version>4.4.2</xchange.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.10</version> </dependency> <!-- This is introduced by XChange anyway, depending on the implementation used --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>28.2-jre</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Global runtime dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.2.18</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.1</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>2.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.15.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>2.9</version> <configuration> <filesNamePattern>.*\.java</filesNamePattern> <skip>false</skip> </configuration> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--no-tty</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>