24 lines
401 B
Groovy
24 lines
401 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'ru.redguy.testtask'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
java {
|
|
compileJava.options.encoding = 'UTF-8'
|
|
}
|
|
|
|
dependencies {
|
|
implementation("io.github.binance:binance-connector-java:3.2.0")
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
implementation("org.telegram:telegrambots:6.9.7.0")
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |