227a0c93166f69ab3e188f5e5721165c7a2f0b15
[ccsdk/sli/adaptors.git] / saltstack-adapter / saltstack-adapter-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- ============LICENSE_START======================================================= 
3         ONAP : CCSDK ================================================================================
4         Copyright (C) 2017-2018 Samsung Electronics. All rights reserved.
5         ================================================================================ 
6          =============================================================================
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. ============LICENSE_END========================================================= -->
14 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15          xmlns="http://maven.apache.org/POM/4.0.0"
16          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17     <modelVersion>4.0.0</modelVersion>
18     <parent>
19         <groupId>org.onap.ccsdk.parent</groupId>
20         <artifactId>binding-parent</artifactId>
21         <version>1.1.1</version>
22         <relativePath/>
23     </parent>
24
25     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
26     <artifactId>saltstack-adapter-provider</artifactId>
27     <version>0.3.1-SNAPSHOT</version>
28     <packaging>bundle</packaging>
29     <name>ccsdk-sli-adaptors :: saltstack-adapter :: ${project.artifactId}
30     </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         <dependency>
47             <groupId>org.osgi</groupId>
48             <artifactId>org.osgi.core</artifactId>
49             <scope>provided</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>jcl-over-slf4j</artifactId>
58         </dependency>
59
60         <!-- Needed to run SSH -->
61         <dependency>
62             <groupId>org.apache.sshd</groupId>
63             <artifactId>sshd-core</artifactId>
64             <version>0.12.0</version>
65         </dependency>
66
67         <dependency>
68             <groupId>org.onap.appc</groupId>
69             <artifactId>appc-common</artifactId>
70             <version>1.3.0</version>
71         </dependency>
72
73         <dependency>
74             <groupId>org.onap.appc</groupId>
75             <artifactId>appc-ssh-adapter-api</artifactId>
76             <version>1.3.0</version>
77             <scope>provided</scope>
78         </dependency>
79
80         <!-- Needed to run test cases -->
81
82         <dependency>
83             <groupId>org.apache.commons</groupId>
84             <artifactId>commons-io</artifactId>
85             <version>1.3.2</version>
86         </dependency>
87
88         <dependency>
89             <groupId>org.codehaus.jettison</groupId>
90             <artifactId>jettison</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <scope>test</scope>
97         </dependency>
98
99         <dependency>
100             <groupId>org.onap.ccsdk.sli.core</groupId>
101             <artifactId>sli-common</artifactId>
102         </dependency>
103
104         <dependency>
105             <groupId>org.onap.ccsdk.sli.core</groupId>
106             <artifactId>sli-provider</artifactId>
107         </dependency>
108
109         <dependency>
110             <groupId>org.json</groupId>
111             <artifactId>json</artifactId>
112         </dependency>
113
114     </dependencies>
115
116 </project>