File tree 3 files changed +4
-1
lines changed
src/test/java/io/serverlessworkflow/api
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ Serverless Workflow Java SDK is **not** a workflow runtime implementation but ca
23
23
| [ 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 ) |
24
24
| [ 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 ) |
25
25
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
+
26
28
### JDK Version
27
29
28
30
| SDK Version | JDK Version |
Original file line number Diff line number Diff line change 75
75
<artifactId >jsonschema2pojo-maven-plugin</artifactId >
76
76
<configuration >
77
77
<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-->
78
79
<!-- <sourcePaths>
79
80
<sourcePath>https://raw.githubusercontent.com/serverlessworkflow/specification/main/schema/workflow.yaml</sourcePath>
80
81
</sourcePaths> -->
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public class FeaturesTest {
44
44
"features/switch.yaml" ,
45
45
"features/try.yaml"
46
46
})
47
- public void testSpecExamplesParsing (String workflowLocation ) throws IOException {
47
+ public void testSpecFeaturesParsing (String workflowLocation ) throws IOException {
48
48
Workflow workflow = readWorkflowFromClasspath (workflowLocation );
49
49
assertWorkflow (workflow );
50
50
assertWorkflow (writeAndReadInMemory (workflow ));
You can’t perform that action at this time.
0 commit comments