blob: f4e04500d7ce8ebdb8526fe70b347e42cf0bf5e0 [file] [log] [blame]
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!-- ============LICENSE_START=======================================================
3 ONAP : APPC ================================================================================
4 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
5 ================================================================================
6 Copyright (C) 2017 Amdocs =============================================================================
7 Licensed under the Apache License, Version 2.0 (the "License"); you may not
8 use this file except in compliance with the License. You may obtain a copy
9 of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
10 by applicable law or agreed to in writing, software distributed under the
11 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
12 OF ANY KIND, either express or implied. See the License for the specific
13 language governing permissions and limitations under the License. ECOMP is
14 a trademark and service mark of AT&T Intellectual Property. ============LICENSE_END========================================================= -->
15<project xmlns="http://maven.apache.org/POM/4.0.0"
16 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.onap.ccsdk.parent</groupId>
21 <artifactId>binding-parent</artifactId>
22 <version>1.1.0-SNAPSHOT</version>
23 <relativePath />
24 </parent>
25
26 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
27 <artifactId>saltstack-adapter-provider</artifactId>
28 <version>0.3.0-SNAPSHOT</version>
29 <packaging>bundle</packaging>
30 <name>ccsdk-sli-adaptors :: saltstack-adapter :: ${project.artifactId}</name>
31
32 <dependencies>
33 <dependency>
34 <groupId>com.att.eelf</groupId>
35 <artifactId>eelf-core</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>commons-codec</groupId>
39 <artifactId>commons-codec</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>commons-logging</groupId>
43 <artifactId>commons-logging</artifactId>
44 <version>1.2</version>
45 </dependency>
46
47 <!-- Needed to run test cases -->
48 <dependency>
49 <groupId>org.glassfish.jersey.core</groupId>
50 <artifactId>jersey-common</artifactId>
51 <version>2.9.1</version>
52 <scope>test</scope>
53 </dependency>
54
55 <dependency>
56 <groupId>org.codehaus.jackson</groupId>
57 <artifactId>jackson-jaxrs</artifactId>
58 <version>1.9.13</version>
59 <scope>test</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.mockito</groupId>
69 <artifactId>mockito-core</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.onap.ccsdk.sli.core</groupId>
74 <artifactId>sli-common</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onap.ccsdk.sli.core</groupId>
79 <artifactId>sli-provider</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.core</artifactId>
85 <scope>provided</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.slf4j</groupId>
89 <artifactId>slf4j-api</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>org.slf4j</groupId>
94 <artifactId>jcl-over-slf4j</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>org.json</groupId>
99 <artifactId>json</artifactId>
100 </dependency>
101
102
103 <dependency>
104 <groupId>com.google.guava</groupId>
105 <artifactId>guava</artifactId>
106 </dependency>
107
108
109 </dependencies>
110
111
112</project>