A java implementation of the Binance API Specification
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
563 B

plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}
sourceCompatibility = 1.8
dependencies {
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.20'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.5'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.5'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.5'
testCompile 'junit:junit:4.12'
}
repositories {
mavenCentral()
}