saltstack to take env and file param
[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="http://maven.apache.org/POM/4.0.0"
15         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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.0-SNAPSHOT</version>
22                 <relativePath />
23         </parent>
24
25         <groupId>org.onap.ccsdk.sli.adaptors</groupId>
26         <artifactId>saltstack-adapter-provider</artifactId>
27         <version>0.3.0-SNAPSHOT</version>
28         <packaging>bundle</packaging>
29         <name>ccsdk-sli-adaptors :: saltstack-adapter :: ${project.artifactId}</name>
30
31         <dependencies>
32                 <dependency>
33                         <groupId>com.att.eelf</groupId>
34                         <artifactId>eelf-core</artifactId>
35                 </dependency>
36                 <dependency>
37                         <groupId>commons-codec</groupId>
38                         <artifactId>commons-codec</artifactId>
39                 </dependency>
40                 <dependency>
41                         <groupId>commons-logging</groupId>
42                         <artifactId>commons-logging</artifactId>
43                         <version>1.2</version>
44                 </dependency>
45
46                 <!-- Needed to run SSH -->
47                 <dependency>
48                         <groupId>org.apache.sshd</groupId>
49                         <artifactId>sshd-core</artifactId>
50                         <version>0.12.0</version>
51                         <scope>provided</scope>
52                 </dependency>
53
54                 <dependency>
55                         <groupId>org.onap.appc</groupId>
56                         <artifactId>appc-common</artifactId>
57                         <version>1.4.0-SNAPSHOT</version>
58                 </dependency>
59
60                 <!-- Needed to run test cases -->
61                 <dependency>
62                         <groupId>org.glassfish.jersey.core</groupId>
63                         <artifactId>jersey-common</artifactId>
64                         <version>2.9.1</version>
65                         <scope>test</scope>
66                 </dependency>
67
68                 <dependency>
69                         <groupId>org.codehaus.jackson</groupId>
70                         <artifactId>jackson-jaxrs</artifactId>
71                         <version>1.9.13</version>
72                         <scope>test</scope>
73                 </dependency>
74
75                 <dependency>
76                         <groupId>org.apache.commons</groupId>
77                         <artifactId>commons-io</artifactId>
78                         <version>1.3.2</version>
79                 </dependency>
80
81                 <dependency>
82                         <groupId>org.codehaus.jettison</groupId>
83                         <artifactId>jettison</artifactId>
84                         <scope>provided</scope>
85                 </dependency>
86
87                 <dependency>
88                         <groupId>junit</groupId>
89                         <artifactId>junit</artifactId>
90                         <scope>test</scope>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.mockito</groupId>
94                         <artifactId>mockito-core</artifactId>
95                         <scope>test</scope>
96                 </dependency>
97                 <dependency>
98                         <groupId>org.onap.ccsdk.sli.core</groupId>
99                         <artifactId>sli-common</artifactId>
100                 </dependency>
101
102                 <dependency>
103                         <groupId>org.onap.ccsdk.sli.core</groupId>
104                         <artifactId>sli-provider</artifactId>
105                 </dependency>
106
107                 <dependency>
108                         <groupId>org.osgi</groupId>
109                         <artifactId>org.osgi.core</artifactId>
110                         <scope>provided</scope>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.slf4j</groupId>
114                         <artifactId>slf4j-api</artifactId>
115                 </dependency>
116
117                 <dependency>
118                         <groupId>org.slf4j</groupId>
119                         <artifactId>jcl-over-slf4j</artifactId>
120                 </dependency>
121
122                 <dependency>
123                         <groupId>org.json</groupId>
124                         <artifactId>json</artifactId>
125                 </dependency>
126
127
128                 <dependency>
129                         <groupId>com.google.guava</groupId>
130                         <artifactId>guava</artifactId>
131                 </dependency>
132
133
134         </dependencies>
135
136         <build>
137                 <plugins>
138                         <plugin>
139                                 <groupId>org.apache.felix</groupId>
140                                 <artifactId>maven-bundle-plugin</artifactId>
141                                 <extensions>true</extensions>
142                                 <configuration>
143                                         <instructions>
144                                                 <Export-Service>org.onap.appc.adapter.ssh.SshAdapter</Export-Service>
145                                                 <Private-Package>org.onap.appc.adapter.ssh.impl.*</Private-Package>
146                                                 <Import-Package>!org.apache.log,!org.apache.commons.logging,!groovy.lang,!javax.jms,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.codehaus.janino,!com.ibm.icu.*,!com.sun.faces.*,!org.jasypt.*,*</Import-Package>
147                                                 <Embed-Dependency>!dblib-provider,jasypt,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency>
148                                                 <Embed-Transitive>true</Embed-Transitive>
149                                         </instructions>
150                                 </configuration>
151                         </plugin>
152                 </plugins>
153         </build>
154 </project>