File tree 3 files changed +7
-7
lines changed 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
release :
2
- current-version : 7.0.0
2
+ current-version : 7.0.0.Final
3
3
next-version : 8.0.0-SNAPSHOT
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Add the following dependencies to your pom.xml `dependencies` section:
56
56
<dependency >
57
57
<groupId >io.serverlessworkflow</groupId >
58
58
<artifactId >serverlessworkflow-api</artifactId >
59
- <version >7.0.0-SNAPSHOT </version >
59
+ <version >7.0.0.Final </version >
60
60
</dependency >
61
61
```
62
62
@@ -65,7 +65,7 @@ Add the following dependencies to your pom.xml `dependencies` section:
65
65
Add the following dependencies to your build.gradle ` dependencies ` section:
66
66
67
67
``` text
68
- implementation("io.serverlessworkflow:serverlessworkflow-api:7.0.0-SNAPSHOT ")
68
+ implementation("io.serverlessworkflow:serverlessworkflow-api:7.0.0.Final ")
69
69
```
70
70
71
71
## How to Use
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ You always need to add this dependency to your pom.xml `dependencies` section:
59
59
<dependency >
60
60
<groupId >io.serverlessworkflow</groupId >
61
61
<artifactId >serverlessworkflow-impl-core</artifactId >
62
- <version >7.0.0</version >
62
+ <version >7.0.0.Final </version >
63
63
</dependency >
64
64
```
65
65
@@ -69,7 +69,7 @@ And only if your workflow is using HTTP calls, you must add:
69
69
<dependency >
70
70
<groupId >io.serverlessworkflow</groupId >
71
71
<artifactId >serverlessworkflow-impl-http</artifactId >
72
- <version >7.0.0</version >
72
+ <version >7.0.0.Final </version >
73
73
</dependency >
74
74
```
75
75
@@ -78,13 +78,13 @@ And only if your workflow is using HTTP calls, you must add:
78
78
You always need to add this dependency to your build.gradle ` dependencies ` section:
79
79
80
80
``` text
81
- implementation("io.serverlessworkflow:serverlessworkflow-impl-core:7.0.0")
81
+ implementation("io.serverlessworkflow:serverlessworkflow-impl-core:7.0.0.Final ")
82
82
```
83
83
84
84
And only if your workflow is using HTTP calls, you must add:
85
85
86
86
``` text
87
- implementation("io.serverlessworkflow:serverlessworkflow-impl-http:7.0.0")
87
+ implementation("io.serverlessworkflow:serverlessworkflow-impl-http:7.0.0.Final ")
88
88
```
89
89
90
90
## How to use
You can’t perform that action at this time.
0 commit comments