- 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).
39 lines
1.7 KiB
Plaintext
39 lines
1.7 KiB
Plaintext
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")
|
|
implementation("org.flywaydb:flyway-database-postgresql")
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0")
|
|
implementation("io.micrometer:micrometer-registry-prometheus")
|
|
implementation("io.micrometer:micrometer-tracing-bridge-otel")
|
|
implementation("io.opentelemetry:opentelemetry-exporter-otlp:1.46.0")
|
|
implementation("software.amazon.awssdk:s3:2.29.52")
|
|
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("org.springframework.security:spring-security-test")
|
|
}
|