covid19-ru/covid19-model/build.gradle

17 lines
490 B
Groovy

apply plugin: 'org.springframework.boot'
version = '0.0.1'
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'
testImplementation 'com.h2database:h2:1.4.194'
}
bootJar { enabled = false }
jar { enabled = true }