Skip to content

Commit

Permalink
upgrade spring module core
Browse files Browse the repository at this point in the history
  • Loading branch information
William Welling committed Jan 4, 2022
1 parent 22700c4 commit 3a66f8a
Show file tree
Hide file tree
Showing 28 changed files with 13,659 additions and 13,659 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ cd /sync
kill $(lsof -t -i :9000)
cd mod-camunda
mvn clean install
nohup java -jar target/mod-camunda-1.0.0-SNAPSHOT.jar &
nohup java -jar target/mod-camunda-1.1.0.jar &
```

### Login
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<artifactId>mod-camunda</artifactId>

<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>

<name>Okapi Camunda Module</name>
<description>Okapi Camunda module for Business Process Management</description>
Expand Down Expand Up @@ -35,7 +35,7 @@
<parent>
<groupId>org.folio</groupId>
<artifactId>spring-module-core</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
<relativePath></relativePath>
</parent>

Expand Down Expand Up @@ -159,13 +159,13 @@
<dependency>
<groupId>org.folio</groupId>
<artifactId>spring-tenant</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</dependency>

<dependency>
<groupId>org.folio</groupId>
<artifactId>workflow-components</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</dependency>

<dependency>
Expand Down
168 changes: 84 additions & 84 deletions ramls/compressfiletask.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,85 @@
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"title" : "CompressFileTask",
"type" : "object",
"additionalProperties" : false,
"properties" : {
"deserializeAs" : {
"type" : "string",
"enum" : [ "CompressFileTask" ],
"default" : "CompressFileTask"
},
"id" : {
"type" : "string"
},
"name" : {
"type" : "string",
"minLength" : 3,
"maxLength" : 64
},
"description" : {
"type" : "string",
"maxLength" : 512
},
"inputVariables" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/EmbeddedVariable"
}
},
"outputVariable" : {
"$ref" : "#/definitions/EmbeddedVariable"
},
"asyncBefore" : {
"type" : "boolean"
},
"asyncAfter" : {
"type" : "boolean"
},
"source" : {
"type" : "string"
},
"destination" : {
"type" : "string"
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
},
"container" : {
"type" : "string",
"enum" : [ "NONE", "TAR" ]
},
"identifier" : {
"type" : "string"
}
},
"required" : [ "deserializeAs", "name", "asyncBefore", "asyncAfter" ],
"definitions" : {
"EmbeddedVariable" : {
"type" : "object",
"additionalProperties" : false,
"properties" : {
"key" : {
"type" : "string",
"minLength" : 4,
"maxLength" : 64
},
"type" : {
"type" : "string",
"enum" : [ "PROCESS", "LOCAL" ]
},
"spin" : {
"type" : "boolean"
},
"asJson" : {
"type" : "boolean"
},
"asTransient" : {
"type" : "boolean"
}
},
"required" : [ "key", "spin" ]
}
}
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"title" : "CompressFileTask",
"type" : "object",
"additionalProperties" : false,
"properties" : {
"deserializeAs" : {
"type" : "string",
"enum" : [ "CompressFileTask" ],
"default" : "CompressFileTask"
},
"id" : {
"type" : "string"
},
"name" : {
"type" : "string",
"minLength" : 3,
"maxLength" : 64
},
"description" : {
"type" : "string",
"maxLength" : 512
},
"inputVariables" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/EmbeddedVariable"
}
},
"outputVariable" : {
"$ref" : "#/definitions/EmbeddedVariable"
},
"asyncBefore" : {
"type" : "boolean"
},
"asyncAfter" : {
"type" : "boolean"
},
"source" : {
"type" : "string"
},
"destination" : {
"type" : "string"
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
},
"container" : {
"type" : "string",
"enum" : [ "NONE", "TAR" ]
},
"identifier" : {
"type" : "string"
}
},
"required" : [ "deserializeAs", "name", "asyncBefore", "asyncAfter" ],
"definitions" : {
"EmbeddedVariable" : {
"type" : "object",
"additionalProperties" : false,
"properties" : {
"key" : {
"type" : "string",
"minLength" : 4,
"maxLength" : 64
},
"type" : {
"type" : "string",
"enum" : [ "PROCESS", "LOCAL" ]
},
"spin" : {
"type" : "boolean"
},
"asJson" : {
"type" : "boolean"
},
"asTransient" : {
"type" : "boolean"
}
},
"required" : [ "key", "spin" ]
}
}
}
76 changes: 38 additions & 38 deletions ramls/condition.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"title" : "Condition",
"type" : "object",
"additionalProperties" : false,
"properties" : {
"deserializeAs" : {
"type" : "string",
"enum" : [ "Condition" ],
"default" : "Condition"
},
"id" : {
"type" : "string"
},
"name" : {
"type" : "string",
"minLength" : 3,
"maxLength" : 64
},
"description" : {
"type" : "string",
"maxLength" : 512
},
"expression" : {
"type" : "string",
"minLength" : 4,
"maxLength" : 128
},
"answer" : {
"type" : "string",
"minLength" : 2,
"maxLength" : 64
},
"identifier" : {
"type" : "string"
}
},
"required" : [ "deserializeAs", "name", "expression", "answer" ]
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"title" : "Condition",
"type" : "object",
"additionalProperties" : false,
"properties" : {
"deserializeAs" : {
"type" : "string",
"enum" : [ "Condition" ],
"default" : "Condition"
},
"id" : {
"type" : "string"
},
"name" : {
"type" : "string",
"minLength" : 3,
"maxLength" : 64
},
"description" : {
"type" : "string",
"maxLength" : 512
},
"expression" : {
"type" : "string",
"minLength" : 4,
"maxLength" : 128
},
"answer" : {
"type" : "string",
"minLength" : 2,
"maxLength" : 64
},
"identifier" : {
"type" : "string"
}
},
"required" : [ "deserializeAs", "name", "expression", "answer" ]
}
62 changes: 31 additions & 31 deletions ramls/connectto.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"title" : "ConnectTo",
"type" : "object",
"additionalProperties" : false,
"properties" : {
"deserializeAs" : {
"type" : "string",
"enum" : [ "ConnectTo" ],
"default" : "ConnectTo"
},
"id" : {
"type" : "string"
},
"name" : {
"type" : "string",
"minLength" : 3,
"maxLength" : 64
},
"description" : {
"type" : "string",
"maxLength" : 512
},
"nodeId" : {
"type" : "string"
},
"identifier" : {
"type" : "string"
}
},
"required" : [ "deserializeAs", "name", "nodeId" ]
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"title" : "ConnectTo",
"type" : "object",
"additionalProperties" : false,
"properties" : {
"deserializeAs" : {
"type" : "string",
"enum" : [ "ConnectTo" ],
"default" : "ConnectTo"
},
"id" : {
"type" : "string"
},
"name" : {
"type" : "string",
"minLength" : 3,
"maxLength" : 64
},
"description" : {
"type" : "string",
"maxLength" : 512
},
"nodeId" : {
"type" : "string"
},
"identifier" : {
"type" : "string"
}
},
"required" : [ "deserializeAs", "name", "nodeId" ]
}
Loading

0 comments on commit 3a66f8a

Please sign in to comment.