blob: d9610b42be062884a9d69eefcdecacabff7038a4 [file] [log] [blame]
Yuli Shlosberga4eeb112019-01-07 16:23:36 +02001<?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>
Sonsino, Ofir (os0695)55c536e2019-05-07 18:30:15 +03008 <version>1.5.0-SNAPSHOT</version>
Yuli Shlosberga4eeb112019-01-07 16:23:36 +02009 </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>
Piotr Daroszd9cf49c2019-06-14 11:39:33 +020050 <version>2.9.9</version>
Yuli Shlosberga4eeb112019-01-07 16:23:36 +020051 </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 </dependencies>
92
93</project>