This repository has been archived on 2024-08-29. You can view files and clone it, but cannot push or open issues or pull requests.
testtask/build.gradle
2024-01-29 22:32:21 +03:00

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()
}