diff options
author | su622b <su622b@att.com> | 2019-07-12 14:33:37 -0400 |
---|---|---|
committer | su622b <su622b@att.com> | 2019-07-12 14:33:52 -0400 |
commit | ca7950ef9b75e1d5d66acee6460c8244f653adee (patch) | |
tree | 22558ad45a7ce16663020a2e67f2abc0236aa3b2 /pom.xml | |
parent | 228ca12aeb2151dccd07fbba9a0a221fd39e881d (diff) |
fix for security vulnerabilities
Issue-ID: DMAAP-985
Change-Id: I1f6ade8ac548e0e3f35fd9f782fd74cdd869d621
Signed-off-by: su622b <su622b@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -197,7 +197,7 @@ <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> - <version>1.3.3</version> + <version>1.4</version> </dependency> <dependency> @@ -352,9 +352,16 @@ <version>0.0.1</version> </dependency> <dependency> - <groupId>javax.mail</groupId> - <artifactId>mail</artifactId> - <version>1.4.4</version> + <groupId>com.sun.mail</groupId> + <artifactId>javax.mail</artifactId> + <version>1.6.0</version> + <exclusions> + <!-- javax activation is part of the JDK now --> + <exclusion> + <groupId>javax.activation</groupId> + <artifactId>activation</artifactId> + </exclusion> + </exclusions> </dependency> <!-- our Highland Park library --> |