covid19-ru/covid19-site/build.gradle

19 lines
586 B
Groovy
Raw Normal View History

2020-04-15 01:18:46 +03:00
apply plugin: 'org.springframework.boot'
2020-04-03 02:05:42 +03:00
dependencies {
compile(project(':covid19-model'))
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
2020-04-03 02:05:42 +03:00
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'
}
2020-04-03 16:51:54 +03:00
springBoot {
2020-04-20 11:06:08 +03:00
mainClassName 'com.bvn13.covid19.site.Covid19SiteApplication'
2020-04-03 15:52:28 +03:00
}