Prepare for Junit5
[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.7.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>org.apache.commons</groupId>
24       <artifactId>commons-crypto</artifactId>
25       <version>1.0.0</version>
26     </dependency>
27
28     <dependency>
29       <groupId>commons-lang</groupId>
30       <artifactId>commons-lang</artifactId>
31       <version>2.6</version>
32     </dependency>
33
34     <dependency>
35       <groupId>org.functionaljava</groupId>
36       <artifactId>functionaljava</artifactId>
37       <version>4.7</version>
38     </dependency>
39
40     <dependency>
41       <groupId>com.fasterxml.jackson.core</groupId>
42       <artifactId>jackson-databind</artifactId>
43       <version>2.9.9</version>
44     </dependency>
45
46     <dependency>
47       <groupId>commons-codec</groupId>
48       <artifactId>commons-codec</artifactId>
49       <version>1.11</version>
50     </dependency>
51
52     <dependency>
53       <groupId>javax.servlet</groupId>
54       <artifactId>javax.servlet-api</artifactId>
55       <version>3.1.0</version>
56     </dependency>
57
58     <dependency>
59       <groupId>org.mockito</groupId>
60       <artifactId>mockito-core</artifactId>
61       <version>${mockito.version}</version>
62       <scope>test</scope>
63     </dependency>
64
65     <dependency>
66       <groupId>org.powermock</groupId>
67       <artifactId>powermock-module-junit4</artifactId>
68       <version>${powermock.version}</version>
69       <scope>test</scope>
70       <exclusions>
71         <exclusion>
72           <groupId>junit</groupId>
73           <artifactId>junit</artifactId>
74         </exclusion>
75       </exclusions>
76     </dependency>
77
78     <dependency>
79       <groupId>org.powermock</groupId>
80       <artifactId>powermock-api-mockito2</artifactId>
81       <version>${powermock.version}</version>
82       <scope>test</scope>
83     </dependency>
84
85   </dependencies>
86
87 </project>