@@ -18,9 +18,8 @@ to parse and validate workflow definitions as well as generate the workflow diag
18
18
19
19
| Latest Releases | Conformance to spec version |
20
20
| :---: | :---: |
21
- | [ 1.0.1.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/ ) | [ v0.5] ( https://github.com/serverlessworkflow/specification/tree/0.5.x ) |
22
- | [ 1.0.2.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/ ) | [ v0.5] ( https://github.com/serverlessworkflow/specification/tree/0.5.x ) + [ Compensation support] ( https://github.com/serverlessworkflow/specification/blob/master/specification.md#Workflow-Compensation ) |
23
- | [ 1.0.3.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/ ) | [ v0.5] ( https://github.com/serverlessworkflow/specification/tree/0.5.x ) + [ Compensation support] ( https://github.com/serverlessworkflow/specification/blob/master/specification.md#Workflow-Compensation ) + [ Update to start/end definitions] ( https://github.com/serverlessworkflow/sdk-java/commit/1addf8d66450830cbc3542c8dfb968b3791aba6f ) |
21
+ | [ 2.0.0.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/ ) | [ v0.6] ( https://github.com/serverlessworkflow/specification/tree/0.6.x ) |
22
+ | [ 1.0.3.Final] ( https://github.com/serverlessworkflow/sdk-java/releases/ ) | [ v0.5] ( https://github.com/serverlessworkflow/specification/tree/0.5.x ) |
24
23
25
24
### Getting Started
26
25
@@ -58,25 +57,25 @@ b) Add the following dependencies to your pom.xml `dependencies` section:
58
57
<dependency >
59
58
<groupId >io.serverlessworkflow</groupId >
60
59
<artifactId >serverlessworkflow-api</artifactId >
61
- <version >2 .0.0-SNAPSHOT</version >
60
+ <version >3 .0.0-SNAPSHOT</version >
62
61
</dependency >
63
62
64
63
<dependency >
65
64
<groupId >io.serverlessworkflow</groupId >
66
65
<artifactId >serverlessworkflow-spi</artifactId >
67
- <version >2 .0.0-SNAPSHOT</version >
66
+ <version >3 .0.0-SNAPSHOT</version >
68
67
</dependency >
69
68
70
69
<dependency >
71
70
<groupId >io.serverlessworkflow</groupId >
72
71
<artifactId >serverlessworkflow-validation</artifactId >
73
- <version >2 .0.0-SNAPSHOT</version >
72
+ <version >3 .0.0-SNAPSHOT</version >
74
73
</dependency >
75
74
76
75
<dependency >
77
76
<groupId >io.serverlessworkflow</groupId >
78
77
<artifactId >serverlessworkflow-diagram</artifactId >
79
- <version >2 .0.0-SNAPSHOT</version >
78
+ <version >3 .0.0-SNAPSHOT</version >
80
79
</dependency >
81
80
```
82
81
@@ -91,10 +90,10 @@ maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
91
90
b) Add the following dependencies to your build.gradle ` dependencies ` section:
92
91
93
92
``` text
94
- implementation("io.serverlessworkflow:serverlessworkflow-api:2 .0.0-SNAPSHOT")
95
- implementation("io.serverlessworkflow:serverlessworkflow-spi:2 .0.0-SNAPSHOT")
96
- implementation("io.serverlessworkflow:serverlessworkflow-validation:2 .0.0-SNAPSHOT")
97
- implementation("io.serverlessworkflow:serverlessworkflow-diagram:2 .0.0-SNAPSHOT")
93
+ implementation("io.serverlessworkflow:serverlessworkflow-api:3 .0.0-SNAPSHOT")
94
+ implementation("io.serverlessworkflow:serverlessworkflow-spi:3 .0.0-SNAPSHOT")
95
+ implementation("io.serverlessworkflow:serverlessworkflow-validation:3 .0.0-SNAPSHOT")
96
+ implementation("io.serverlessworkflow:serverlessworkflow-diagram:3 .0.0-SNAPSHOT")
98
97
```
99
98
100
99
### How to Use
0 commit comments