covid19-ru/covid19-site/build.gradle

19 lines
586 B
Groovy

apply plugin: 'org.springframework.boot'
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.site.Covid19SiteApplication'
}