Release ccsdk/sli/adaptors
[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" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15     <modelVersion>4.0.0</modelVersion>
16     <parent>
17         <groupId>org.onap.ccsdk.parent</groupId>
18         <artifactId>binding-parent</artifactId>
19         <version>1.5.2</version>
20         <relativePath/>
21     </parent>
22
23     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
24     <artifactId>saltstack-adapter-provider</artifactId>
25     <version>0.7.1</version>
26     <packaging>bundle</packaging>
27     <name>ccsdk-sli-adaptors :: saltstack-adapter :: ${project.artifactId}
28     </name>
29
30     <properties>
31         <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
32         <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
33     </properties>
34
35     <dependencyManagement>
36         <dependencies>
37                 <dependency>
38                         <groupId>org.onap.ccsdk.sli.core</groupId>
39                         <artifactId>sli-core-artifacts</artifactId>
40                         <version>${ccsdk.sli.core.version}</version>
41                         <type>pom</type>
42                         <scope>import</scope>
43                 </dependency>
44         </dependencies>
45     </dependencyManagement>
46
47     <dependencies>
48         <dependency>
49             <groupId>com.att.eelf</groupId>
50             <artifactId>eelf-core</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>commons-codec</groupId>
54             <artifactId>commons-codec</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>commons-logging</groupId>
58             <artifactId>commons-logging</artifactId>
59             <version>1.2</version>
60         </dependency>
61         <dependency>
62             <groupId>org.osgi</groupId>
63             <artifactId>org.osgi.core</artifactId>
64             <scope>provided</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>jcl-over-slf4j</artifactId>
73         </dependency>
74
75         <!-- Needed to run SSH -->
76         <!-- VERSION CONFLICT !!!!! -->
77         <!-- OpenDaylight Fluorine comes with version 1.7.0 installed, which is not compatible -->
78         <!-- Code must be updated to use version 1.7.0 before this can be safely installed -->
79         <dependency>
80             <groupId>org.apache.sshd</groupId>
81             <artifactId>sshd-core</artifactId>
82             <version>1.7.0</version>
83         </dependency>
84
85         <!-- Needed to run test cases -->
86
87         <dependency>
88             <groupId>org.apache.commons</groupId>
89             <artifactId>commons-io</artifactId>
90         </dependency>
91
92         <dependency>
93             <groupId>org.codehaus.jettison</groupId>
94             <artifactId>jettison</artifactId>
95         </dependency>
96
97         <dependency>
98             <groupId>junit</groupId>
99             <artifactId>junit</artifactId>
100             <scope>test</scope>
101         </dependency>
102
103         <dependency>
104             <groupId>org.onap.ccsdk.sli.core</groupId>
105             <artifactId>sli-common</artifactId>
106         </dependency>
107
108         <dependency>
109             <groupId>org.onap.ccsdk.sli.core</groupId>
110             <artifactId>sli-provider</artifactId>
111         </dependency>
112
113         <dependency>
114             <groupId>org.json</groupId>
115             <artifactId>json</artifactId>
116         </dependency>
117
118     </dependencies>
119
120 </project>