You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: documentation/modules/ROOT/pages/02-startup-project.adoc
+20-20
Original file line number
Diff line number
Diff line change
@@ -13,34 +13,34 @@ However, in this tutorial, we are going to focus on the core service which is re
13
13
14
14
The workflow core logic is hosted by a plain Quarkus project with some extensions.
15
15
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:
17
18
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
22
21
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:
24
23
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
29
29
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_:
31
31
32
-
[source,xml,subs="+macros,+attributes"]
32
+
[source,xml,subs="+macros,+attributes"]
33
33
----
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>
41
41
----
42
42
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`.
0 commit comments