From f2477734bd1e28c34493f7ff2fa0eb7cc15a635a Mon Sep 17 00:00:00 2001 From: Pierre Laporte Date: Thu, 24 Apr 2025 19:37:24 +0200 Subject: [PATCH] Add missing Postgresql dependency In #1411, the build was updated to always include the postgresql dependency. But only the gradle files that package the `polaris` image were updated. The image that packages the polaris admin tool was not. As a result, it was not possible to bootstrap a Postgres-backed Polaris instance with the admin tool. This commit fixes the issue. --- quarkus/admin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/quarkus/admin/build.gradle.kts b/quarkus/admin/build.gradle.kts index 90da205f80..357acfd945 100644 --- a/quarkus/admin/build.gradle.kts +++ b/quarkus/admin/build.gradle.kts @@ -44,6 +44,7 @@ dependencies { implementation(project(":polaris-api-iceberg-service")) runtimeOnly(project(":polaris-eclipselink")) + runtimeOnly("org.postgresql:postgresql") implementation(enforcedPlatform(libs.quarkus.bom)) implementation("io.quarkus:quarkus-picocli")