2026-01-09 18:35:06 +01:00
|
|
|
plugins {
|
|
|
|
|
kotlin("jvm")
|
|
|
|
|
kotlin("plugin.spring")
|
|
|
|
|
kotlin("plugin.jpa")
|
|
|
|
|
id("org.springframework.boot")
|
|
|
|
|
id("io.spring.dependency-management")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation(project(":common"))
|
|
|
|
|
implementation(project(":modules:identity"))
|
|
|
|
|
implementation(project(":modules:clinical"))
|
|
|
|
|
implementation(project(":modules:messaging"))
|
|
|
|
|
implementation(project(":modules:notifications"))
|
|
|
|
|
implementation(project(":modules:audit"))
|
|
|
|
|
implementation(project(":modules:integrations"))
|
|
|
|
|
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-security")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-amqp")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-redis")
|
|
|
|
|
implementation("org.flywaydb:flyway-core")
|
Update Docker images, Kotlin, Spring Boot, Gradle, and dependencies
- Upgraded Docker image versions for `postgres`, `keycloak`, `rabbitmq`, `redis`, and `minio`.
- Updated Kotlin to `1.9.25` and aligned related plugins.
- Upgraded Spring Boot to `3.4.1` and adjusted dependencies accordingly.
- Downgraded JVM target and toolchain to `17` for compatibility.
- Updated Gradle to `8.12` along with dependency version improvements (`flyway-core`, `opentelemetry`, `springdoc`, AWS SDK).
2026-01-13 15:37:29 +01:00
|
|
|
implementation("org.flywaydb:flyway-database-postgresql")
|
|
|
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0")
|
2026-01-09 18:35:06 +01:00
|
|
|
implementation("io.micrometer:micrometer-registry-prometheus")
|
|
|
|
|
implementation("io.micrometer:micrometer-tracing-bridge-otel")
|
Update Docker images, Kotlin, Spring Boot, Gradle, and dependencies
- Upgraded Docker image versions for `postgres`, `keycloak`, `rabbitmq`, `redis`, and `minio`.
- Updated Kotlin to `1.9.25` and aligned related plugins.
- Upgraded Spring Boot to `3.4.1` and adjusted dependencies accordingly.
- Downgraded JVM target and toolchain to `17` for compatibility.
- Updated Gradle to `8.12` along with dependency version improvements (`flyway-core`, `opentelemetry`, `springdoc`, AWS SDK).
2026-01-13 15:37:29 +01:00
|
|
|
implementation("io.opentelemetry:opentelemetry-exporter-otlp:1.46.0")
|
|
|
|
|
implementation("software.amazon.awssdk:s3:2.29.52")
|
2026-01-09 18:35:06 +01:00
|
|
|
|
|
|
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
|
|
|
|
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
2026-01-12 22:23:38 +01:00
|
|
|
testImplementation("org.springframework.security:spring-security-test")
|
2026-01-09 18:35:06 +01:00
|
|
|
}
|