diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-07 00:44:17 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-07 00:44:20 +0800 |
commit | 565f47670930d60ea2c2f0130db4bf4444331151 (patch) | |
tree | 4f17c1a0fc865901e2da4d415c949f2d53deea77 | |
parent | 3c32e16281ac683470a2f7b247b96b72ba7599d3 (diff) |
Fix usecase-ui-server security risk issues
Change-Id: I657159c34a8c7f38c99ccf42e2f55110ea6e5fbc
Issue-ID: USECASEUI-258
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
-rw-r--r-- | server/pom.xml | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/server/pom.xml b/server/pom.xml index 8329c87e..c3344c08 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -95,10 +95,6 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jersey</artifactId> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - </dependency> <!-- postgresql dependency--> <dependency> <groupId>postgresql</groupId> @@ -145,10 +141,6 @@ <artifactId>spring-jdbc</artifactId> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-webmvc</artifactId> - </dependency> - <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate.version}</version> @@ -171,9 +163,9 @@ <version>9.4.14.v20181114</version> </dependency> <dependency> - <groupId>org.springframework.data</groupId> - <artifactId>spring-data-rest-webmvc</artifactId> - <version>2.6.7.RELEASE</version> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + <version>9.4.17.v20190418</version> </dependency> <dependency> <groupId>org.springframework</groupId> @@ -187,11 +179,6 @@ </dependency> <dependency> <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - <version>4.3.22.RELEASE</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.3.22.RELEASE</version> </dependency> |