Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.2.0</version>
<version>7.9.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down
2 changes: 1 addition & 1 deletion knowledge-directory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.2.0</version>
<version>7.9.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down
2 changes: 1 addition & 1 deletion smart-connector-rest-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.2.0</version>
<version>7.9.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ private List<Map<String, String>> bindingSetToList(BindingSet bindings) {
private AskExchangeInfo.InitiatorEnum toInitiatorEnumAsk(Initiator initiator) {
switch (initiator) {
case KNOWLEDGEBASE:
return AskExchangeInfo.InitiatorEnum.KNOWLEDGEBASE;
return AskExchangeInfo.InitiatorEnum.KNOWLEDGE_BASE;
case REASONER:
return AskExchangeInfo.InitiatorEnum.REASONER;
default:
Expand Down Expand Up @@ -318,7 +318,7 @@ public void scPostPost(
private PostExchangeInfo.InitiatorEnum toInitiatorEnumPost(Initiator initiator) {
switch (initiator) {
case KNOWLEDGEBASE:
return PostExchangeInfo.InitiatorEnum.KNOWLEDGEBASE;
return PostExchangeInfo.InitiatorEnum.KNOWLEDGE_BASE;
case REASONER:
return PostExchangeInfo.InitiatorEnum.REASONER;
default:
Expand Down
2 changes: 1 addition & 1 deletion smart-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.2.0</version>
<version>7.9.0</version>
<executions>
<!-- Generate InterKnowledgeEngineRuntime protocol classes -->
<execution>
Expand Down