Skip to content

Commit 8be0174

Browse files
committed
Sync documentation of main branch
1 parent 5c556f2 commit 8be0174

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

_versions/main/guides/blaze-persistence.adoc

+10-7
Original file line numberDiff line numberDiff line change
@@ -33,31 +33,34 @@ In Quarkus, you just need to:
3333

3434
Add the following dependencies to your project:
3535

36-
* the Blaze-Persistence extension: `com.blazebit:blaze-persistence-integration-quarkus`
36+
* the Blaze-Persistence extension: `com.blazebit:blaze-persistence-integration-quarkus-3`
3737
* further Blaze-Persistence integrations as needed:
38-
- `blaze-persistence-integration-jackson` for link:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#Jackson%20integration[Jackson]
38+
- `blaze-persistence-integration-jackson-jakarta` for link:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#Jackson%20integration[Jackson]
39+
- `blaze-persistence-integration-jsonb-jakarta` for link:https://persistence.blazebit.com/documentation/1.6/entity-view/manual/en_US/#jsonb-integration[JSONB]
3940
- `blaze-persistence-integration-jaxrs` for link:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#jaxrs-integration[Jakarta REST]
41+
- `blaze-persistence-integration-jaxrs-jackson-jakarta` for link:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#jaxrs-integration[Jakarta REST with Jackson]
42+
- `blaze-persistence-integration-jaxrs-jsonb-jakarta` for link:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#jaxrs-integration[Jakarta REST with JSONB]
4043

4144
[source,xml,role="primary asciidoc-tabs-target-sync-cli asciidoc-tabs-target-sync-maven"]
4245
.Example dependencies using Maven
4346
----
4447
<!-- Blaze-Persistence specific dependencies -->
4548
<dependency>
4649
<groupId>com.blazebit</groupId>
47-
<artifactId>blaze-persistence-integration-quarkus</artifactId>
50+
<artifactId>blaze-persistence-integration-quarkus-3</artifactId>
4851
</dependency>
4952
<dependency>
5053
<groupId>com.blazebit</groupId>
51-
<artifactId>blaze-persistence-integration-hibernate-5.6</artifactId>
54+
<artifactId>blaze-persistence-integration-hibernate-6.2</artifactId>
5255
<scope>runtime</scope>
5356
</dependency>
5457
----
5558

5659
[source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"]
5760
.Using Gradle
5861
----
59-
implementation("com.blazebit:blaze-persistence-integration-quarkus")
60-
runtimeOnly("com.blazebit:blaze-persistence-integration-hibernate-5.6")
62+
implementation("com.blazebit:blaze-persistence-integration-quarkus-3")
63+
runtimeOnly("com.blazebit:blaze-persistence-integration-hibernate-6.2")
6164
----
6265

6366
The use in native images requires a dependency on the entity view annotation processor that may be extracted into a separate `native` profile:
@@ -70,7 +73,7 @@ The use in native images requires a dependency on the entity view annotation pro
7073
<dependencies>
7174
<dependency>
7275
<groupId>com.blazebit</groupId>
73-
<artifactId>blaze-persistence-entity-view-processor</artifactId>
76+
<artifactId>blaze-persistence-entity-view-processor-jakarta</artifactId>
7477
<scope>provided</scope>
7578
</dependency>
7679
</dependencies>

0 commit comments

Comments
 (0)