mirror of
https://github.com/vran-dev/databasir.git
synced 2025-08-08 17:23:44 +08:00
* feat: jooq generate * feat: support github oauth * feat: support oauth2 login * feat: update content-type * feat: add custom authentication exception * feat: add oauth2 app api * fix: checkstyle
35 lines
1.0 KiB
Groovy
35 lines
1.0 KiB
Groovy
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.springframework.boot:spring-boot-starter-oauth2-client'
|
|
|
|
implementation 'org.flywaydb:flyway-core'
|
|
|
|
}
|
|
|