covid19-ru/covid19-site/build.gradle

21 lines
603 B
Groovy

apply plugin: 'org.springframework.boot'
version = '0.0.2'
dependencies {
compile(project(':covid19-model'))
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.github.ben-manes.caffeine:caffeine:2.8.1'
runtimeOnly 'org.postgresql:postgresql'
}
springBoot {
mainClassName 'com.bvn13.covid19.api.Covid19ApiApplication'
}