diff options
author | mpriyank <priyank.maheshwari@est.tech> | 2024-02-28 14:10:54 +0000 |
---|---|---|
committer | mpriyank <priyank.maheshwari@est.tech> | 2024-02-28 14:20:48 +0000 |
commit | a7f3568a39c7d12859a55e0c76c452e0d3f1938b (patch) | |
tree | 86a50fc62e56ed1f33b22cbe4fa40aaf193602ba /cps-application | |
parent | 22e1f43ce053649b18ebb6aacee5312947b258e5 (diff) |
Revert Spring Boot Uplift
- reverting back to spring 3.1.2
- manual changes to revert as other apps not fully ready for the
delivery
Issue-ID: CPS-2133
Change-Id: I670b67916fa4a5d4e5bced6548b7fcd5ee12e855
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
Diffstat (limited to 'cps-application')
-rw-r--r-- | cps-application/pom.xml | 12 | ||||
-rw-r--r-- | cps-application/src/main/resources/application.yml | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/cps-application/pom.xml b/cps-application/pom.xml index 871b92980b..fd43da44f8 100644 --- a/cps-application/pom.xml +++ b/cps-application/pom.xml @@ -70,6 +70,18 @@ <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> </dependency> <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + </dependency> + <dependency> + <groupId>jakarta.servlet</groupId> + <artifactId>jakarta.servlet-api</artifactId> + </dependency> + <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> </dependency> diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index 207341ccde..9f03fc2708 100644 --- a/cps-application/src/main/resources/application.yml +++ b/cps-application/src/main/resources/application.yml @@ -64,7 +64,7 @@ spring: liquibase: change-log: classpath:changelog/changelog-master.yaml - label-filter: ${LIQUIBASE_LABELS} + labels: ${LIQUIBASE_LABELS} servlet: multipart: |