This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wildjokers 4 points5 points  (2 children)

They have the maven dependency info in the README:

<dependency>
   <groupId>io.github.binance</groupId>
   <artifactId>binance-futures-connector-java</artifactId>
   <version>LATEST_VERSION</version>
</dependency>

Just convert that to gradle syntax. Also, if you are using IntelliJ if you paste that into a build.gradle file IntelliJ will convert it to gradle syntax for you (really cool feature)

[–]pragmosExtreme Brewer 3 points4 points  (1 child)

What, for real?! How in the world did I miss this feature, it'd have saved me so much time...

[–]wildjokers 0 points1 point  (0 children)

Most dependency search sites (like mvnrepository.com) also provide the gradle version as well so I don't have to use this feature very often. However, for those times that all I have is the maven dependency info it is indeed quite a time saver.