Skip to content

Commit 84943b5

Browse files
Ricardo's comments
Co-authored-by: Ricardo Zanini <[email protected]>
1 parent f98ff62 commit 84943b5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ Serverless Workflow Java SDK is **not** a workflow runtime implementation but ca
2323
| [2.0.0.Final](https://github.com/serverlessworkflow/sdk-java/releases/tag/2.0.0.Final) | [v0.6](https://github.com/serverlessworkflow/specification/tree/0.6.x) |
2424
| [1.0.3.Final](https://github.com/serverlessworkflow/sdk-java/releases/tag/1.0.3.Final) | [v0.5](https://github.com/serverlessworkflow/specification/tree/0.5.x) |
2525

26+
Note that 6.0.0.Final, which will be the one for specification version 0.9, is skipped intentionally in case someone want to work on it.
27+
2628
### JDK Version
2729

2830
| SDK Version | JDK Version |

api/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
<artifactId>jsonschema2pojo-maven-plugin</artifactId>
7676
<configuration>
7777
<sourceDirectory>${basedir}/src/main/resources/schema</sourceDirectory>
78+
<!--The comment below is left intentionally in case jsonschema2pojo one day accepts https urls. That day we can remove the file from schema dir and use directly the real schema-->
7879
<!-- <sourcePaths>
7980
<sourcePath>https://raw.githubusercontent.com/serverlessworkflow/specification/main/schema/workflow.yaml</sourcePath>
8081
</sourcePaths> -->

api/src/test/java/io/serverlessworkflow/api/FeaturesTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class FeaturesTest {
4444
"features/switch.yaml",
4545
"features/try.yaml"
4646
})
47-
public void testSpecExamplesParsing(String workflowLocation) throws IOException {
47+
public void testSpecFeaturesParsing(String workflowLocation) throws IOException {
4848
Workflow workflow = readWorkflowFromClasspath(workflowLocation);
4949
assertWorkflow(workflow);
5050
assertWorkflow(writeAndReadInMemory(workflow));

0 commit comments

Comments
 (0)