ShoppingCrawler/receiver/build.gradle

26 lines
1001 B
Groovy
Raw Normal View History

2021-08-20 09:04:06 +00:00
dependencies {
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
compileOnly 'org.projectlombok:lombok'
2021-08-22 08:43:52 +00:00
implementation project(':support')
// https://projectreactor.io/docs/core/release/reference/#debug-activate
implementation 'org.springframework.boot:spring-boot-starter-webflux'
2021-09-05 10:24:45 +00:00
implementation 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'org.springframework.cloud:spring-cloud-starter-config'
2021-11-21 17:18:25 +00:00
implementation 'org.springframework.boot:spring-boot-starter-actuator'
2021-08-20 09:04:06 +00:00
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"
}
}