diff options
author | Jim Hahn <jrh3@att.com> | 2020-06-30 09:14:51 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-06-30 09:21:35 -0400 |
commit | d3e074c0010cce39ed4ca0071f5a78aadc8d6496 (patch) | |
tree | 0cfa86f2cab0961f9f805f028492fa94f795b2a0 /utils/pom.xml | |
parent | f71f3fcb8c1e3138f92a3c773f19bf3280572def (diff) |
Fix sonar about always-trust-manager
This trust manager is not secure and should be avoided. However,
it is only used when the configuration explicitly says to allow
self-signed certificates. Modified the code to use an apache trust
manager, thus avoid the sonar complaint.
Issue-ID: POLICY-2650
Change-Id: Iaf4c72689916ed5ed5e6864666f3f54b2c5e0f12
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'utils/pom.xml')
-rw-r--r-- | utils/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/pom.xml b/utils/pom.xml index 846d6871..95ea2c39 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -61,6 +61,11 @@ <artifactId>commons-lang3</artifactId> </dependency> <dependency> + <groupId>commons-net</groupId> + <artifactId>commons-net</artifactId> + <version>3.6</version> + </dependency> + <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> |