23 lines
769 B
Groovy
23 lines
769 B
Groovy
dependencies {
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
runtimeOnly 'com.h2database:h2'
|
|
runtimeOnly 'mysql:mysql-connector-java'
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
implementation project(':support')
|
|
// https://projectreactor.io/docs/core/release/reference/#debug-activate
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
|
implementation 'org.telegram:telegrambots:5.3.0'
|
|
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
} |