Skip to content

Commit

Permalink
adjusted documentation for 0.30.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mswiderski committed Jun 4, 2023
1 parent d1a2276 commit 65139fc
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
1 change: 1 addition & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
** xref:services/email.adoc[Send Email]
** xref:services/receive-email.adoc[Receive Email]
* Migration guide
** xref:migration-guide/0.30.0.adoc[0.30.0]
** xref:migration-guide/0.16.0.adoc[0.16.0]
** xref:migration-guide/0.13.0.adoc[0.13.0]
** xref:migration-guide/0.11.0.adoc[0.11.0]
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/getting-started-bpmn.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Here you can find all that is needed to get you started with Automatiko

Following are the required software before you can get started with Automatiko

- Java (version 11 or higher)
- Apache Maven (version 3.6.3 or higher)
- Java (version 17 or higher)
- Apache Maven (version 3.8 or higher)

In addition, following are good to have though they are not mandatory

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/getting-started-code.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ NOTE: All described examples below can be found in https://github.com/automatiko

Following are the required software before you can get started with Automatiko

- Java (version 11 or higher)
- Apache Maven (version 3.6.3 or higher)
- Java (version 17 or higher)
- Apache Maven (version 3.8 or higher)

In addition, following are good to have though they are not mandatory

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/getting-started-sw.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ needed to build fully featured services based on workflow definitions.

Following are the required software before you can get started with Automatiko

- Java (version 11 or higher)
- Apache Maven (version 3.6.3 or higher)
- Java (version 17 or higher)
- Apache Maven (version 3.8 or higher)

In addition, following are good to have though they are not mandatory

Expand Down
14 changes: 14 additions & 0 deletions docs/modules/ROOT/pages/migration-guide/0.30.0.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
= Migrate to 0.30.0


== Quarkus 3.1.0

Automatiko with version 0.30.0 has moved to new mejor version of Quarkus (3.1.0) and by that there is a need to execute migration
that among other things will move `javax.` packages to `jakarta.` for Jakarta EE code.

Best is to follow https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.0[Quarkus official migration guide] as there is no code changes from pure Automatiko stand point.

== Java 17

With 0.30.0 release Automatiko moved to Java 17 to take advantage of various improvements and to adjust with Apache Camel which is also important
part of Automatiko and integration scenarios.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/workflow-function.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ And then deployed to your Google Cloud project using `gcloud`
----
gcloud functions deploy automatiko-user-registration-example \
--entry-point=io.quarkus.gcp.functions.http.QuarkusHttpFunction \
--runtime=java11 --trigger-http --source=target/deployment
--runtime=java17 --trigger-http --source=target/deployment
----

This command will give you as output a `httpsTrigger.url` that points to your function.
Expand Down

0 comments on commit 65139fc

Please sign in to comment.