| 组织ID: |
com.bitso |
| 项目ID: |
bitso-java |
| 版本: |
2.0.0 |
| 最后修改时间: |
2019-11-01 06:21:23 |
| 包类型: |
jar |
| 标题: |
bitso-java |
| 描述: |
A Java wrapper for the Bitso Exchange API |
| 相关URL: |
https://bitso.com |
| 大小: |
46.62KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.bitso</groupId>
<artifactId>bitso-java</artifactId>
<version>2.0.0</version>
</dependency>
|
| Gradle引入代码: |
com.bitso:bitso-java:2.0.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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>
<groupId>com.bitso</groupId>
<artifactId>bitso-java</artifactId>
<packaging>jar</packaging>
<version>2.0.0</version>
<name>bitso-java</name>
<description>A Java wrapper for the Bitso Exchange API</description>
<url>https://bitso.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.scm.version>1.9.4</maven.scm.version>
<maven.surefire.version>2.18.1</maven.surefire.version>
</properties>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<id>vogelito</id>
<name>Daniel Vogel</name>
<email>vogel@bitso.com</email>
<url>https://github.com/vogelito</url>
<organization>Bitso SAPI de CV</organization>
<organizationUrl>https://bitso.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:bitsoex/bitso-java.git</connection>
<developerConnection>scm:git:git@github.com:bitsoex/bitso-java.git</developerConnection>
<url>git@github.com:bitsoex/bitso-java.git</url>
<tag>bitso-java-2.0.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20141113</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>3.2.1</version>
</dependency>
</dependencies>
<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>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>${maven.scm.version}</version>
</dependency>
</dependencies>
<configuration>
<!-- During release:perform, enable the "release" profile -->
<releaseProfiles>release</releaseProfiles>
<useReleaseProfile>false</useReleaseProfile>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- We want to sign the artifact, the POM, and all attached artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- We want to deploy the artifact to a staging location for perusal -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.bitso.Bitso.class
com.bitso.BitsoBalance.class
com.bitso.BitsoBook.class
com.bitso.BitsoFeeStructure.class
com.bitso.BitsoLookupOrders.class
com.bitso.BitsoOpenOrders.class
com.bitso.BitsoOrderBook.class
com.bitso.BitsoTicker.class
com.bitso.BitsoTransactions$Transaction$SIDE.class
com.bitso.BitsoTransactions$Transaction.class
com.bitso.BitsoTransactions.class
com.bitso.BitsoTransfer$STATUS.class
com.bitso.BitsoTransfer.class
com.bitso.BitsoTransferQuote.class
com.bitso.BitsoUserTransactions$1.class
com.bitso.BitsoUserTransactions$Movement$TYPE.class
com.bitso.BitsoUserTransactions$Movement.class
com.bitso.BitsoUserTransactions$SORT_ORDER.class
com.bitso.BitsoUserTransactions.class
com.bitso.examples.BitsoJavaExample.class
com.bitso.examples.BitsoWebSocketExample.class
com.bitso.exchange.BookOrder$STATUS.class
com.bitso.exchange.BookOrder$TYPE.class
com.bitso.exchange.BookOrder.class
com.bitso.exchange.OrderBook.class
com.bitso.exchange.Ticker.class
com.bitso.helpers.Helpers.class
com.bitso.http.BlockingHttpClient.class
com.bitso.websockets.BitsoWebSocket.class
com.bitso.websockets.Channels.class
META-INF/maven/com.bitso/bitso-java/pom.xml
META-INF/maven/com.bitso/bitso-java/pom.properties
|
| 依赖Jar: |
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
httpclient-4.3.6.jar
/org.apache.httpcomponents/httpclient/4.3.6
查看httpclient所有版本文件
json-20141113.jar
/org.json/json/20141113
查看json所有版本文件
vertx-core-3.2.1.jar
/io.vertx/vertx-core/3.2.1
查看vertx-core所有版本文件
|