blob: 10e19243f918d0a827527aeb7a6309988c74db08 [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>
Ofir Sonsino145e9602019-10-29 11:07:28 +02008 <version>1.6.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>
Ben David, Elad (eb7504)1e617542019-11-03 17:22:48 +020091
92 <dependency>
93 <groupId>org.onap.logging-analytics</groupId>
94 <artifactId>logging-slf4j</artifactId>
Ben David, Elad (eb7504)3042f712019-11-06 17:45:27 +020095 <version>1.6.1</version>
96 <scope>compile</scope>
Ben David, Elad (eb7504)1e617542019-11-03 17:22:48 +020097 </dependency>
Yuli Shlosberga4eeb112019-01-07 16:23:36 +020098 </dependencies>
99
100</project>