diff options
Diffstat (limited to 'cps-application/pom.xml')
-rwxr-xr-x | cps-application/pom.xml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/cps-application/pom.xml b/cps-application/pom.xml index e8869707ce..15868b1596 100755 --- a/cps-application/pom.xml +++ b/cps-application/pom.xml @@ -40,6 +40,7 @@ <minimum-coverage>0.86</minimum-coverage> <base.image>${docker.pull.registry}/onap/integration-java17:12.0.0</base.image> <image.tag>${project.version}-${maven.build.timestamp}</image.tag> + <jakarta-servlet.version>5.0.0</jakarta-servlet.version> </properties> <dependencies> @@ -70,8 +71,8 @@ <artifactId>micrometer-registry-prometheus</artifactId> </dependency> <dependency> - <groupId>org.springframework.cloud</groupId> - <artifactId>spring-cloud-starter-sleuth</artifactId> + <groupId>io.micrometer</groupId> + <artifactId>micrometer-tracing-bridge-brave</artifactId> </dependency> <!-- T E S T D E P E N D E N C I E S --> <dependency> @@ -118,6 +119,14 @@ <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + </dependency> + <dependency> + <groupId>jakarta.servlet</groupId> + <artifactId>jakarta.servlet-api</artifactId> + </dependency> </dependencies> <build> |