Skip to content

Commit 25fd983

Browse files
committed
version updates
1 parent ec1628c commit 25fd983

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

documentation/modules/ROOT/pages/02-startup-project.adoc

+20-20
Original file line numberDiff line numberDiff line change
@@ -13,34 +13,34 @@ However, in this tutorial, we are going to focus on the core service which is re
1313

1414
The workflow core logic is hosted by a plain Quarkus project with some extensions.
1515

16-
Serverless Workflow leverages some capabilities coming from of the *Kogito* upstream initiative. For such reason, the extensions have the `kogito` prefix:
16+
Serverless Workflow leverages some capabilities coming from of the *SonataFlow* upstream initiative.
17+
For such reason, the extensions have the `sonataflow` prefix:
1718

18-
* `kogito-quarkus-serverless-workflow`
19-
* `kogito-addons-quarkus-persistence-jdbc`
20-
* `kogito-addons-quarkus-process-svg`
21-
* `kogito-quarkus-serverless-workflow-devui`
19+
* sonataflow-quarkus
20+
* sonataflow-quarkus-devui
2221
23-
Other common Quarkus extensions used are:
22+
SonataFlow uses some foundational capabilities of other two upstream projects `kie` and `kogito`, those are the related quarkus extensions:
2423

25-
* `quarkus-smallrye-openapi`
26-
* `quarkus-resteasy`
27-
* `quarkus-resteasy-jackson`
28-
* `quarkus-jdbc-postgresql`
24+
* kie-addons-quarkus-knative-eventing
25+
* kie-addons-quarkus-process-management
26+
* kie-addons-quarkus-source-files
27+
* kogito-addons-quarkus-data-index-inmemory
28+
* kogito-addons-quarkus-jobs-service-embedded
2929
30-
It's worth noticing that, at the moment, serverless workflow extensions are not aligned to the quarkus platform, so they relies a dedicated _bom_:
30+
It's worth noticing that, at the moment, Serverless Workflow extensions are not aligned to the quarkus platform, so they relies a dedicated _bom_:
3131

32-
[source, xml,subs="+macros,+attributes"]
32+
[source,xml,subs="+macros,+attributes"]
3333
----
34-
<dependency>
35-
<groupId>org.kie.kogito</groupId>
36-
<artifactId>kogito-bom</artifactId>
37-
<version>1.35.0.Final-redhat-00003</version>
38-
<type>pom</type>
39-
<scope>import</scope>
40-
</dependency>
34+
<dependency>
35+
<groupId>org.kie.kogito</groupId>
36+
<artifactId>kogito-bom</artifactId>
37+
<version>${kie.version}</version>
38+
<type>pom</type>
39+
<scope>import</scope>
40+
</dependency>
4141
----
4242

43-
The version `1.27.0.Final-redhat-00005` comes from the developer preview.
43+
At the time of writing, the latest `kie.version` is `9.101.0.redhat-00007`.
4444

4545
[#run]
4646
== Run the workflow

0 commit comments

Comments
 (0)