gdax-java 作为库的实现

Implementation of gdax-java as a library

我正在尝试实现此 API:https://github.com/robevansuk/gdax-java 以便能够通过 Coinbase 创建订单、提取资金和存入资金并在 GDAX 中兑换比特币。我正在尝试使用 GDAX 及其 API.

为比特币制作交易程序

但是,我对库的实现很困惑。我试图联系一些贡献者,但他们没有回复。我阅读了他们的文档:

For a lib:

If you'd rather work purely in java then you can build an executable jar file ./gradlew jar and you should be able to find the jar in the build directory.

所以我克隆了项目和运行命令

但是,我无法在构建目录中找到 jar。它没有生成任何 jar:

我检查过,唯一的罐子是 gradle 包装器。 有没有人有将 gdax-java 作为库实现的示例?

这是我的工作副本...我倾向于将任何相关更改推送回从 Coinbase/GDAX 网站链接到的原始存储库。 https://github.com/irufus/gdax-java - 请使用这个作为主要的,因为任何 work/issues 都应该在那个 repo 上提出。

说...我没想到这个库会受到如此多的关注,直到最近才意识到人们正在尝试更广泛地使用它。由于有一些社区建设,并且您应该知道它已经分叉了很多次,所以我们在 gitter channel linked to at the top of the original repository here: gdax-java

就生成 jar 而言 - 有多种方法可以找到它...一种是在项目目录中执行搜索...

cd [project_dir]
find . -name gdax-java.*jar

或者在项目目录下生成./build/gdax-java-[VERSION].jar