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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ARG CRAC_JDK_SHA256_ARM64=d89f3835ea86c95090892cebc6e7169dd567f740b6bd6ffe8cb9ce
# The Gradle build produces an architecture-independent jar, so it runs on the
# builder's native platform. Without this the whole Kotlin build would run under
# QEMU for the arm64 image, taking far longer for a byte-identical artifact.
FROM --platform=$BUILDPLATFORM gradle:9.5.1-jdk21-alpine AS build
FROM --platform=$BUILDPLATFORM gradle:9.7.0-jdk21-alpine AS build
WORKDIR /app

# Layer 1: Copy only build scripts for dependency caching
Expand Down Expand Up @@ -70,7 +70,7 @@ RUN gcc -O2 -Wall -Wextra -Werror -o /run-as-agent /run-as-agent.c -lcap
# JVM checkpoint to /opt/crac/checkpoint. Used only by the crac-train CI
# workflow, which never needs the Agent Session tooling, so it stays on the
# upstream CRaC image rather than paying for the full runtime stage.
FROM bellsoft/liberica-runtime-container:jdk-21-crac-slim-glibc AS train
FROM bellsoft/liberica-runtime-container:jdk-21.0.12_11-crac-slim-glibc AS train
WORKDIR /app
COPY --from=build /app/api/build/libs/*.jar app.jar
COPY --from=otel /otel-javaagent.jar otel-javaagent.jar
Expand Down
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies {
implementation("org.aspectj:aspectjweaver:1.9.25.1")
implementation("org.springframework.boot:spring-boot-starter-data-redis")
implementation("org.springframework.boot:spring-boot-starter-amqp")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.3")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:3.1.1")
implementation("org.springframework.boot:spring-boot-starter-flyway")
implementation("org.flywaydb:flyway-database-postgresql")
implementation("org.springframework.boot:spring-boot-starter-jooq")
Expand All @@ -78,7 +78,7 @@ dependencies {
// lifecycle. Server-side apply, no informer cache (one-shot CRUD
// is enough), pulled in with the kubernetes-client-bom to keep
// model + httpclient versions aligned.
implementation(platform("io.fabric8:kubernetes-client-bom:7.7.0"))
implementation(platform("io.fabric8:kubernetes-client-bom:7.9.0"))
implementation("io.fabric8:kubernetes-client")
testImplementation("io.fabric8:kubernetes-server-mock")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
jorisjonkers-commons = "0.9.3"
jorisjonkers-conventions = "0.7.0"
kotlin = "2.3.21"
kotlin = "2.4.20"

[libraries]
kotlin-commons-archunit-test = { module = "dev.jorisjonkers:kotlin-commons-archunit-test", version.ref = "jorisjonkers-commons" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
Expand Down
Loading