Skip to content

Commit 69bcdba

Browse files
committed
fix: native build fail due to jooq external dependency
1 parent fca0c40 commit 69bcdba

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

stackgres-k8s/src/operator/pom.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
<name>StackGres Operator</name>
2020

2121
<properties>
22-
<jooq.version>3.19.15</jooq.version>
23-
2422
<stackgres.authentication.secretName>stackgres-restapi</stackgres.authentication.secretName>
2523
<stackgres.prometheus.allowAutobind>true</stackgres.prometheus.allowAutobind>
2624
<stackgres.prometheus.grafanaEmbedded>false</stackgres.prometheus.grafanaEmbedded>
@@ -62,9 +60,16 @@
6260
<scope>provided</scope>
6361
</dependency>
6462
<dependency>
65-
<groupId>org.jooq</groupId>
66-
<artifactId>jooq</artifactId>
67-
<version>${jooq.version}</version>
63+
<groupId>io.quarkiverse.jooq</groupId>
64+
<artifactId>quarkus-jooq</artifactId>
65+
</dependency>
66+
<dependency>
67+
<groupId>io.quarkus</groupId>
68+
<artifactId>quarkus-jdbc-postgresql</artifactId>
69+
</dependency>
70+
<dependency>
71+
<groupId>jakarta.persistence</groupId>
72+
<artifactId>jakarta.persistence-api</artifactId>
6873
</dependency>
6974

7075
<dependency>

0 commit comments

Comments
 (0)