diff --git a/multiapps-controller-api/pom.xml b/multiapps-controller-api/pom.xml
index fbc5e96bb9..d369fa99a6 100644
--- a/multiapps-controller-api/pom.xml
+++ b/multiapps-controller-api/pom.xml
@@ -68,6 +68,12 @@
jaxb-api
provided
+
+
+ javax.servlet
+ javax.servlet-api
+ provided
+
diff --git a/multiapps-controller-api/src/main/resources/mtarest.yaml b/multiapps-controller-api/src/main/resources/mtarest.yaml
index 2fa76ac907..8a6de8c701 100644
--- a/multiapps-controller-api/src/main/resources/mtarest.yaml
+++ b/multiapps-controller-api/src/main/resources/mtarest.yaml
@@ -426,6 +426,9 @@ definitions:
mta_id:
type: "string"
readOnly: true
+ schema_version:
+ type: "string"
+ readOnly: true
client_actions:
type: "array"
readOnly: true
@@ -463,6 +466,9 @@ definitions:
file_url:
type: "string"
readOnly: true
+ credentials:
+ readOnly: true
+ $ref: "#/definitions/UserCredentials"
Info:
type: "object"
properties:
@@ -643,3 +649,12 @@ definitions:
name:
type: "string"
readOnly: true
+ UserCredentials:
+ type: "object"
+ properties:
+ username:
+ type: "string"
+ readOnly: true
+ password:
+ type: "string"
+ readOnly: true
diff --git a/pom.xml b/pom.xml
index c4e1cd608e..61a06137fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,6 +60,7 @@
1.3.5
2.62.1
0.128.11
+ 4.0.1
multiapps-controller-client
@@ -403,6 +404,14 @@
${servlet-api.version}
provided
+
+
+
+ javax.servlet
+ javax.servlet-api
+ ${javax.servlet-api.version}
+ provided
+
jakarta.annotation