summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-03-20 16:10:42 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-03-20 20:41:08 +0100
commitab36adbbc22fcd156ddce528a9ff5e5103623342 (patch)
treef70201b4d324a495f9c956ad39a7a4312477337c /pom.xml
parent0dfcd14064a1eaf55acf057e4cc65ee2e4f5ef0a (diff)
Use Blaze Persistence for criteria queries.
Blaze Persistence is more flexible, but also less type-safe than JPA Criteria. This change explores what the changes look like and how efficient the resulting queries are. Change-Id: Ia47e4f0280d451e0381f58ece297c5bc06604289
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index cd94789..0efeb19 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,9 +194,22 @@
<artifactId>quarkus-container-image-jib</artifactId>
</dependency>
-
<!-- Quarkus universe -->
<dependency>
+ <groupId>com.blazebit</groupId>
+ <artifactId>blaze-persistence-integration-quarkus</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.blazebit</groupId>
+ <artifactId>blaze-persistence-integration-hibernate-5.6</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.blazebit</groupId>
+ <artifactId>blaze-persistence-entity-view-processor</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-mail</artifactId>
</dependency>