Fix sonarqube issues introduced by ZipSlip change
[sdc.git] / openecomp-be / backend / openecomp-sdc-security-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>backend</artifactId>
7         <groupId>org.openecomp.sdc</groupId>
8         <version>1.6.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>openecomp-sdc-security-util</artifactId>
13
14
15     <dependencies>
16         <dependency>
17             <groupId>org.slf4j</groupId>
18             <artifactId>slf4j-api</artifactId>
19             <version>1.7.25</version>
20         </dependency>
21
22         <dependency>
23             <groupId>junit</groupId>
24             <artifactId>junit</artifactId>
25             <version>4.12</version>
26             <scope>test</scope>
27         </dependency>
28
29         <dependency>
30             <groupId>org.apache.commons</groupId>
31             <artifactId>commons-crypto</artifactId>
32             <version>1.0.0</version>
33         </dependency>
34
35         <dependency>
36             <groupId>commons-lang</groupId>
37             <artifactId>commons-lang</artifactId>
38             <version>2.6</version>
39         </dependency>
40
41         <dependency>
42             <groupId>org.functionaljava</groupId>
43             <artifactId>functionaljava</artifactId>
44             <version>4.7</version>
45         </dependency>
46
47         <dependency>
48             <groupId>com.fasterxml.jackson.core</groupId>
49             <artifactId>jackson-databind</artifactId>
50             <version>2.9.9</version>
51         </dependency>
52
53         <dependency>
54             <groupId>commons-codec</groupId>
55             <artifactId>commons-codec</artifactId>
56             <version>1.11</version>
57         </dependency>
58
59         <dependency>
60             <groupId>javax.servlet</groupId>
61             <artifactId>javax.servlet-api</artifactId>
62             <version>3.1.0</version>
63         </dependency>
64
65         <dependency>
66             <groupId>org.mockito</groupId>
67             <artifactId>mockito-core</artifactId>
68             <version>2.8.9</version>
69             <scope>test</scope>
70         </dependency>
71
72         <dependency>
73             <groupId>org.powermock</groupId>
74             <artifactId>powermock-module-junit4</artifactId>
75             <version>1.7.4</version>
76             <scope>test</scope>
77             <exclusions>
78                 <exclusion>
79                     <groupId>junit</groupId>
80                     <artifactId>junit</artifactId>
81                 </exclusion>
82             </exclusions>
83         </dependency>
84
85         <dependency>
86             <groupId>org.powermock</groupId>
87             <artifactId>powermock-api-mockito2</artifactId>
88             <version>1.7.4</version>
89             <scope>test</scope>
90         </dependency>
91
92         <dependency>
93             <groupId>org.onap.logging-analytics</groupId>
94             <artifactId>logging-slf4j</artifactId>
95             <version>1.4.0</version>
96         </dependency>
97     </dependencies>
98
99 </project>