diff options
author | 2019-11-12 11:15:37 +0530 | |
---|---|---|
committer | 2019-11-12 11:15:37 +0530 | |
commit | f6c61b35e8a3f95c32c66622716097d812e34211 (patch) | |
tree | bb2306cb0613bd35303a6496cbf2f2620420d97f | |
parent | 39702ee1cc74842ec7228ebd7dda86eb6116db94 (diff) |
Issue-ID: DCAEGEN2-1824 dcaegen2-collectors-restconf vulnerabilities
Signed-off-by: s00370346 <swarup.nayak1@huawei.com>
Change-Id: I87dc09e14eedfd5ba7ab6c0acb80fe5e8f11c153
-rw-r--r-- | pom.xml | 26 |
1 files changed, 22 insertions, 4 deletions
@@ -324,7 +324,7 @@ limitations under the License. <!-- Import dependency management from Spring Boot --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> - <version>2.1.0.RELEASE</version> + <version>2.2.0.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> @@ -343,6 +343,21 @@ limitations under the License. <version>2.2.6</version> </dependency> <dependency> + <groupId>com.googlecode.libphonenumber</groupId> + <artifactId>libphonenumber</artifactId> + <version>8.10.22</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.9.9</version> + </dependency> + <dependency> + <groupId>org.springframework.security</groupId> + <artifactId>spring-security-core</artifactId> + <version>5.2.1.RELEASE</version> + </dependency> + <dependency> <groupId>com.github.fge</groupId> <artifactId>json-schema-core</artifactId> <version>1.2.5</version> @@ -387,6 +402,7 @@ limitations under the License. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> + <version>2.2.0.RELEASE</version> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> @@ -397,10 +413,12 @@ limitations under the License. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> + <version>2.2.0.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> + <version>5.2.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -410,12 +428,12 @@ limitations under the License. <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> - <version>2.8.0</version> + <version>2.9.2</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> - <version>2.8.0</version> + <version>2.9.2</version> <scope>compile</scope> </dependency> <dependency> @@ -520,7 +538,7 @@ limitations under the License. <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-test</artifactId> - <version>5.1.1.RELEASE</version> + <version>5.2.1.RELEASE</version> <scope>test</scope> </dependency> <dependency> |