covid19-ru/covid19-model/build.gradle

19 lines
555 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 {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
runtimeOnly 'org.postgresql:postgresql'
implementation 'org.flywaydb:flyway-core'
2020-04-03 16:51:54 +03:00
testImplementation 'com.h2database:h2:1.4.194'
2020-04-03 02:05:42 +03:00
}
2020-04-19 03:15:02 +03:00
springBoot {
mainClassName 'com.bvn13.covid19.model.Covid19ModelApplication'
}
2020-04-19 03:55:31 +03:00
bootJar { enabled = false }
2020-04-15 01:18:46 +03:00
jar { enabled = true }