Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ dependencies {
// style failures on the existing tree. Introduce per service later.
implementation("dev.detekt:detekt-gradle-plugin:2.0.0-alpha.6")
implementation("org.jlleitschuh.gradle:ktlint-gradle:14.2.0")
implementation("org.openapitools:openapi-generator-gradle-plugin:7.24.0")
implementation("org.openapitools:openapi-generator-gradle-plugin:7.25.0")
}
14 changes: 7 additions & 7 deletions services/api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.springframework.boot.gradle.tasks.run.BootRun
plugins {
id("spring-conventions")
id("testing-conventions")
id("org.graalvm.buildtools.native") version "1.1.10"
id("org.graalvm.buildtools.native") version "1.1.11"
`java-test-fixtures`

val kotlinVersion = "2.4.10"
Expand Down Expand Up @@ -73,7 +73,7 @@ dependencies {
// is the default client pulled in by spring-boot-starter-data-redis.
implementation("org.springframework.boot:spring-boot-starter-data-redis")
implementation("org.springframework.session:spring-session-data-redis")
implementation(platform("org.springframework.modulith:spring-modulith-bom:2.1.0"))
implementation(platform("org.springframework.modulith:spring-modulith-bom:2.1.1"))
implementation("org.springframework.modulith:spring-modulith-starter-jdbc")
// Module detection pulls in ArchUnit, which has no business in the production jar —
// the detection strategy is only ever instantiated by ApplicationModules in a test.
Expand All @@ -95,7 +95,7 @@ dependencies {

implementation("com.google.apis:google-api-services-calendar:v3-rev20251207-2.0.0")
implementation("com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0")
implementation("com.google.auth:google-auth-library-oauth2-http:1.50.0")
implementation("com.google.auth:google-auth-library-oauth2-http:1.51.0")

compileOnly("jakarta.servlet:jakarta.servlet-api:6.1.0")
implementation("jakarta.validation:jakarta.validation-api")
Expand All @@ -106,13 +106,13 @@ dependencies {

implementation("com.vladsch.flexmark:flexmark-all:0.64.8")
implementation("org.apache.tika:tika-core:4.0.0")
implementation("com.googlecode.libphonenumber:libphonenumber:9.0.37")
implementation("com.googlecode.libphonenumber:libphonenumber:9.0.38")
implementation("com.github.scribejava:scribejava-apis:8.3.3")
implementation("org.springframework.retry:spring-retry:2.0.13")
implementation("org.springframework:spring-aop")
implementation("org.aspectj:aspectjweaver")

implementation("org.flywaydb:flyway-mysql:13.3.0")
implementation("org.flywaydb:flyway-mysql:13.4.0")
implementation("org.mariadb.jdbc:mariadb-java-client:3.5.10")

implementation("com.fasterxml.jackson.core:jackson-annotations")
Expand Down Expand Up @@ -146,7 +146,7 @@ dependencies {
testImplementation("io.rest-assured:spring-mock-mvc:6.0.1")
testImplementation("com.tngtech.archunit:archunit-junit5:1.5.0")
testImplementation("org.springframework.modulith:spring-modulith-core")
testImplementation("io.github.classgraph:classgraph:4.8.193")
testImplementation("io.github.classgraph:classgraph:4.8.194")
testImplementation("io.mockk:mockk:1.14.11")
// H2 in-memory database for OpenAPI spec generation (test-scoped only).
testImplementation("com.h2database:h2:2.4.240")
Expand All @@ -160,7 +160,7 @@ dependencies {
testFixturesApi("org.springframework.boot:spring-boot-starter-data-jpa")
testFixturesApi("org.springframework.boot:spring-boot-starter-web")
testFixturesApi("org.springframework.boot:spring-boot-starter-flyway")
testFixturesApi("org.flywaydb:flyway-mysql:13.3.0")
testFixturesApi("org.flywaydb:flyway-mysql:13.4.0")
testFixturesApi("com.github.javafaker:javafaker:1.0.2")
// Shared test base boots a throwaway Valkey via @ServiceConnection so the
// Redis-backed HTTP session path is exercised under the real prod config.
Expand Down
Loading