Update sli/adaptors to ODL Oxygen
[ccsdk/sli/adaptors.git] / ansible-adapter / ansible-adapter-bundle / pom.xml
1 <?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>ansible-adapter-bundle</artifactId>
28         <version>0.3.0-SNAPSHOT</version>
29         <packaging>bundle</packaging>
30         <name>ccsdk-sli-adaptors :: ansible-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                 <dependency>
48                         <groupId>org.apache.httpcomponents</groupId>
49                         <artifactId>httpclient</artifactId>
50                         <version>${apache.httpcomponents.client.version}</version>
51                 </dependency>
52
53
54                 <!-- Needed to run test cases -->
55                 <dependency>
56                         <groupId>org.glassfish.jersey.core</groupId>
57                         <artifactId>jersey-common</artifactId>
58                         <version>2.9.1</version>
59                         <scope>test</scope>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>org.codehaus.jackson</groupId>
64                         <artifactId>jackson-jaxrs</artifactId>
65                         <version>1.9.13</version>
66                         <scope>test</scope>
67                 </dependency>
68
69                 <dependency>
70                         <groupId>junit</groupId>
71                         <artifactId>junit</artifactId>
72                         <scope>test</scope>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.mockito</groupId>
76                         <artifactId>mockito-core</artifactId>
77                         <scope>test</scope>
78                 </dependency>
79                 <dependency>
80                         <groupId>org.onap.ccsdk.sli.core</groupId>
81                         <artifactId>sli-common</artifactId>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.onap.ccsdk.sli.core</groupId>
86                         <artifactId>sli-provider</artifactId>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.osgi</groupId>
91                         <artifactId>org.osgi.core</artifactId>
92                         <scope>provided</scope>
93                 </dependency>
94                 <dependency>
95                         <groupId>org.slf4j</groupId>
96                         <artifactId>slf4j-api</artifactId>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.slf4j</groupId>
101                         <artifactId>jcl-over-slf4j</artifactId>
102                 </dependency>
103
104                 <dependency>
105                         <groupId>org.json</groupId>
106                         <artifactId>json</artifactId>
107                 </dependency>
108
109
110                 <dependency>
111                         <groupId>com.google.guava</groupId>
112                         <artifactId>guava</artifactId>
113                 </dependency>
114
115
116         </dependencies>
117
118
119 </project>