generated from aura-ascend/template-service
- update README.md
- setup tls
- update gradle.properties with docker tls ports
- update application.yml
- disable tls in develop
- set docker values
- add default tls values
- add keystore.p12
- setup postgres
- update application.yml with defualt values
- add 000-initizalise.sql
- add postgres dependencies and config
- add docker compose development
- add actuator.http
- add http environment
- update name and readme for service
31 lines
875 B
Kotlin
31 lines
875 B
Kotlin
plugins {
|
|
alias(aa.plugins.kotlin.jvm)
|
|
alias(aa.plugins.kotlin.spring)
|
|
alias(aa.plugins.spring.boot)
|
|
alias(aa.plugins.spring.dependency.management)
|
|
alias(aa.plugins.service)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(aa.fasterxml.jackson)
|
|
implementation(aa.kotlin.logging)
|
|
implementation(aa.kotlin.reflect)
|
|
implementation(aa.kotlinx.coroutines)
|
|
implementation(aa.springboot.starter.actuator)
|
|
implementation(aa.springboot.starter.r2dbc)
|
|
implementation(aa.springboot.starter.webflux)
|
|
|
|
runtimeOnly(aa.postgresql)
|
|
runtimeOnly(aa.postgresql.r2dbc)
|
|
|
|
testImplementation(aa.kotlin.junit5)
|
|
testImplementation(aa.kotlinx.coroutines.test)
|
|
testImplementation(aa.mockk)
|
|
testImplementation(aa.springboot.starter.test)
|
|
|
|
testRuntimeOnly(aa.junit.platform.launcher)
|
|
}
|
|
|
|
group = "ltd.lulz"
|
|
description = "service basic banking"
|