parrot/build.gradle
2025-01-10 13:23:59 +02:00

33 lines
891 B
Groovy

plugins {
id 'application'
id 'org.springframework.boot' version '3.4.1'
}
group = 'com.sparrowwallet'
version = '1.0'
repositories {
mavenCentral()
}
application {
mainClass = 'com.sparrowwallet.parrot.Main'
}
dependencies {
implementation('org.telegram:telegrambots-springboot-longpolling-starter:8.2.0')
implementation('org.telegram:telegrambots-longpolling:8.2.0')
implementation('org.telegram:telegrambots-client:8.2.0')
implementation ('ch.qos.logback:logback-classic:1.4.14') {
exclude group: 'org.slf4j'
}
implementation('org.yaml:snakeyaml:2.3')
implementation('io.lettuce:lettuce-core:6.5.2.RELEASE')
implementation('jakarta.annotation:jakarta.annotation-api:2.1.1')
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation('org.junit.jupiter:junit-jupiter')
}
test {
useJUnitPlatform()
}