You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
949 B
33 lines
949 B
plugins {
|
|
id 'io.spring.dependency-management'
|
|
id 'org.springframework.boot' apply false
|
|
}
|
|
|
|
bootJar {
|
|
archiveBaseName = 'databasir'
|
|
archiveVersion = ''
|
|
enabled = true
|
|
}
|
|
|
|
bootBuildImage {
|
|
imageName = "${project.group}/databasir:${project.version}"
|
|
publish = false
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":common")
|
|
implementation project(":plugin")
|
|
implementation project(":core")
|
|
implementation project(":dao")
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.boot:spring-boot-starter-aop'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
implementation 'org.springframework.boot:spring-boot-starter-quartz'
|
|
|
|
implementation 'org.flywaydb:flyway-core'
|
|
|
|
}
|
|
|
|
|