File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
src/main/java/io/iworkflow/core Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ See [samples](https://github.com/indeedeng/iwf-java-samples) for how to use this
99## Gradle
1010``` gradle
1111// https://mvnrepository.com/artifact/io.iworkflow/iwf-java-sdk
12- implementation 'io.iworkflow:iwf-java-sdk:1.2.5 '
12+ implementation 'io.iworkflow:iwf-java-sdk:1.2.6 '
1313```
1414## Maven
1515```
1616<!-- https://mvnrepository.com/artifact/io.iworkflow/iwf-java-sdk -->
1717<dependency>
1818 <groupId>io.iworkflow</groupId>
1919 <artifactId>iwf-java-sdk</artifactId>
20- <version>1.2.5 </version>
20+ <version>1.2.6 </version>
2121 <type>pom</type>
2222</dependency>
2323
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ signing {
150150}
151151
152152group = " io.iworkflow"
153- version = " 1.2.5 "
153+ version = " 1.2.6 "
154154
155155nexusPublishing {
156156 repositories {
Original file line number Diff line number Diff line change @@ -35,11 +35,13 @@ public static StateDecision forceCompleteWorkflow(final Object output) {
3535
3636 public static StateDecision gracefulCompleteWorkflow () {
3737 return ImmutableStateDecision .builder ().nextStates (Arrays .asList (
38+ StateMovement .gracefulCompleteWorkflow ()
3839 )).build ();
3940 }
4041
4142 public static StateDecision forceCompleteWorkflow () {
4243 return ImmutableStateDecision .builder ().nextStates (Arrays .asList (
44+ StateMovement .forceCompleteWorkflow ()
4345 )).build ();
4446 }
4547
You can’t perform that action at this time.
0 commit comments