@@ -8,7 +8,8 @@ A lightweight, non-blocking, reactive **runtime** for the [Serverless Workflow](
88
99## Contents
1010
11- * [ Status & Features] ( #status--features )
11+ * [ Status] ( #status )
12+ * [ Features] ( #features )
1213* [ Modules] ( #modules )
1314* [ Installation] ( #installation )
1415* [ Quick Start] ( #quick-start )
@@ -22,7 +23,20 @@ A lightweight, non-blocking, reactive **runtime** for the [Serverless Workflow](
2223
2324---
2425
25- ## Status & Features
26+ ## Status
27+
28+ | Latest Releases | Conformance to spec version |
29+ | :------------------------------------------------------------------------------------: | :----------------------------------------------------------------------: |
30+ | [ 7.x] ( https://github.com/serverlessworkflow/sdk-java/releases/tag/7.1.0.Final ) (Java 17)| [ v1.0.0] ( https://github.com/serverlessworkflow/specification/tree/1.0.x ) |
31+ | [ 5.x] ( https://github.com/serverlessworkflow/sdk-java/releases/tag/5.1.0.Final ) (Java 11) | [ v0.8] ( https://github.com/serverlessworkflow/specification/tree/0.8.x ) |
32+ | [ 4.x] ( https://github.com/serverlessworkflow/sdk-java/releases/tag/4.1.0.Final ) (Java 1.8) | [ v0.8] ( https://github.com/serverlessworkflow/specification/tree/0.8.x ) |
33+ | [ 3.0.0.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/tag/3.0.0.Final ) (Java 1.8) | [ v0.7] ( https://github.com/serverlessworkflow/specification/tree/0.7.x ) |
34+ | [ 2.0.0.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/tag/2.0.0.Final ) (Java 1.8) | [ v0.6] ( https://github.com/serverlessworkflow/specification/tree/0.6.x ) |
35+ | [ 1.0.3.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/tag/1.0.3.Final ) (Java 1.8) | [ v0.5] ( https://github.com/serverlessworkflow/specification/tree/0.5.x ) |
36+
37+ > ** Note:** ` 6.0.0.Final ` (planned for spec ** v0.9** ) is intentionally ** skipped** to leave room for anyone who wants to work on it.
38+
39+ ## Features
2640
2741This reference implementation can run workflows consisting of:
2842
@@ -131,7 +145,7 @@ implementation("io.serverlessworkflow:serverlessworkflow-impl-jackson-jwt") // i
131145## Quick Start
132146
133147We’ll run a simple workflow that performs an HTTP GET. See the full YAML in
134- ` examples/simpleGet/src/main/resources/get.yaml ` .
148+ [ examples/simpleGet/src/main/resources/get.yaml] ( ) .
135149
136150### Blocking execution
137151
@@ -165,8 +179,8 @@ Workflow output is {"id":10,"category":{"id":10,"name":"string"},"name":"doggie"
165179
166180Full examples:
167181
168- * Blocking: ` examples/simpleGet/src/main/java/io/serverlessworkflow/impl/BlockingExample.java `
169- * Non-blocking: ` examples/simpleGet/src/main/java/io/serverlessworkflow/impl/NotBlockingExample.java `
182+ * Blocking: [ examples/simpleGet/src/main/java/io/serverlessworkflow/impl/BlockingExample.java] ( )
183+ * Non-blocking: [ examples/simpleGet/src/main/java/io/serverlessworkflow/impl/NotBlockingExample.java] ( )
170184
171185---
172186
0 commit comments