diff options
author | vv770d <vv770d@att.com> | 2022-02-28 23:21:39 +0000 |
---|---|---|
committer | vv770d <vv770d@att.com> | 2022-02-28 23:23:31 +0000 |
commit | a6fc68e6716b32d62e43a6c81ddffdbf82541f93 (patch) | |
tree | dc125d7d748dc0e724ba77a226309a82e03b4606 | |
parent | 5c10024121ea96b5ec04a259e5eb26f6e02f8d72 (diff) |
[DCAEMOD/Helm-gen] Vulnerability updates
Fix runtime exception noted with okhttp upgrade to 4.9.3
Change-Id: Ib4cc0ce0723f34d528cd7a4a392309dd8eeae068
Signed-off-by: vv770d <vv770d@att.com>
Issue-ID: DCAEGEN2-3052
-rw-r--r-- | mod2/helm-generator/pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/mod2/helm-generator/pom.xml b/mod2/helm-generator/pom.xml index 52d1427..1b6d211 100644 --- a/mod2/helm-generator/pom.xml +++ b/mod2/helm-generator/pom.xml @@ -104,13 +104,24 @@ <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.9.3</version> + <exclusions> + <exclusion> + <groupId>com.squareup.okio</groupId> + <artifactId>okio</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> - <version>4.0.1</version> + <version>4.9.3</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.squareup.okio</groupId> + <artifactId>okio</artifactId> + <version>2.2.2</version> + </dependency> </dependencies> <dependencyManagement> <dependencies> |