aboutsummaryrefslogtreecommitdiffstats
path: root/cps-tbdmt-rest
diff options
context:
space:
mode:
authorNiranjana <niranjana.y60@wipro.com>2022-03-10 11:52:19 +0000
committerNiranjana <niranjana.y60@wipro.com>2022-03-14 13:52:55 +0000
commit26d2e7029f32260246e0bfc21dde0b17006b28bd (patch)
tree87b93d507a5d8d13c91e45444b77989b8b910a2e /cps-tbdmt-rest
parenta9c4c58fdb558ddb4ef11581c001f44b3954ab4d (diff)
Remove extra brackets in the result of output transformation
Issue-ID: CPS-920 Signed-off-by: Niranjana <niranjana.y60@wipro.com> Change-Id: I130f80c687bb2a9ccdf0ed45c387d7cfc167face
Diffstat (limited to 'cps-tbdmt-rest')
-rw-r--r--cps-tbdmt-rest/pom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/cps-tbdmt-rest/pom.xml b/cps-tbdmt-rest/pom.xml
index f1e6cb8..2ff830b 100644
--- a/cps-tbdmt-rest/pom.xml
+++ b/cps-tbdmt-rest/pom.xml
@@ -28,6 +28,11 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>cps-tbdmt-rest</artifactId>
+
+ <properties>
+ <jetty.version>11.0.7</jetty.version>
+ </properties>
+
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
@@ -47,18 +52,39 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>2.5.5</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-io</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-servlets</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-http</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.glassfish</groupId>
+ <artifactId>jakarta.el</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-io</artifactId>
+ <version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
+ <version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
+ <version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>