diff options
| author | Paul-Christian Volkmer | 2023-07-25 15:45:02 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-07-25 15:45:02 +0200 |
| commit | 2929bb26ac84d8a6c900e6f8692f1b84ecc39087 (patch) | |
| tree | 139a99cdd8f5e32f7ae6717fc4d50c7e9a1ccd6f /build.gradle.kts | |
| parent | 05149bac0b60423cda3865e3119ce87b9e8cba62 (diff) | |
Add request and status logging
Diffstat (limited to 'build.gradle.kts')
| -rw-r--r-- | build.gradle.kts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index e29435a..0cbf77e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -32,11 +32,16 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-reflect") implementation("org.springframework.boot:spring-boot-starter-thymeleaf") implementation("org.springframework.boot:spring-boot-starter-web") + implementation("org.springframework.boot:spring-boot-starter-data-jdbc") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.springframework.kafka:spring-kafka") + implementation("org.flywaydb:flyway-mysql") implementation("commons-codec:commons-codec") implementation("de.ukw.ccc:bwhc-dto-java:0.2.0") + runtimeOnly("org.mariadb.jdbc:mariadb-java-client") + runtimeOnly("org.postgresql:postgresql") developmentOnly("org.springframework.boot:spring-boot-devtools") + developmentOnly("org.springframework.boot:spring-boot-docker-compose") annotationProcessor("org.springframework.boot:spring-boot-configuration-processor") providedRuntime("org.springframework.boot:spring-boot-starter-tomcat") testImplementation("org.springframework.boot:spring-boot-starter-test") |
