32 lines
904 B
Groovy
32 lines
904 B
Groovy
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.4.1'
|
||
|
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
|
||
|
id "org.flywaydb.flyway" version "7.4.0"
|
||
|
id 'java'
|
||
|
id 'war'
|
||
|
}
|
||
|
sourceCompatibility = '11'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
implementation 'org.postgresql:postgresql:42.2.18'
|
||
|
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
|
||
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
flyway {
|
||
|
url = project.ext['springshowcase.flyway.url']
|
||
|
user = project.ext['springshowcase.flyway.username']
|
||
|
password = project.ext['springshowcase.flyway.password']
|
||
|
schemas = project.ext['springshowcase.flyway.schemas']
|
||
|
}
|