generated from pricelees/issue-pr-template
18 lines
508 B
Plaintext
18 lines
508 B
Plaintext
plugins {
|
|
id("org.springframework.boot")
|
|
kotlin("plugin.spring")
|
|
kotlin("plugin.jpa")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("net.logstash.logback:logstash-logback-encoder:8.1")
|
|
|
|
implementation(project(":common:web"))
|
|
implementation(project(":common:types"))
|
|
implementation(project(":common:persistence"))
|
|
|
|
runtimeOnly("io.micrometer:micrometer-registry-prometheus")
|
|
runtimeOnly("com.h2database:h2")
|
|
}
|