22ee41297feea8953555bd37b4ce1e77384b4a27
[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" 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.0.2-SNAPSHOT</version>
22         <relativePath/>
23     </parent>
24
25     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
26     <artifactId>ansible-adapter-bundle</artifactId>
27     <version>0.2.2-SNAPSHOT</version>
28     <packaging>bundle</packaging>
29     <name>ccsdk-sli-adaptors :: ansible-adapter :: ${project.artifactId}</name>
30
31     <dependencies>
32         <dependency>
33             <groupId>commons-codec</groupId>
34             <artifactId>commons-codec</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>commons-logging</groupId>
38             <artifactId>commons-logging</artifactId>
39             <version>1.2</version>
40         </dependency>
41
42         <dependency>
43             <groupId>org.apache.httpcomponents</groupId>
44             <artifactId>httpclient</artifactId>
45             <version>${apache.httpcomponents.client.version}</version>
46         </dependency>
47
48
49         <!-- Needed to run test cases -->
50         <dependency>
51             <groupId>org.glassfish.jersey.core</groupId>
52             <artifactId>jersey-common</artifactId>
53             <version>2.9.1</version>
54             <scope>test</scope>
55         </dependency>
56
57         <dependency>
58             <groupId>org.codehaus.jackson</groupId>
59             <artifactId>jackson-jaxrs</artifactId>
60             <version>1.9.13</version>
61             <scope>test</scope>
62         </dependency>
63
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.mockito</groupId>
71             <artifactId>mockito-core</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.onap.ccsdk.sli.core</groupId>
76             <artifactId>sli-common</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>org.onap.ccsdk.sli.core</groupId>
81             <artifactId>sli-provider</artifactId>
82         </dependency>
83
84         <dependency>
85             <groupId>equinoxSDK381</groupId>
86             <artifactId>org.eclipse.osgi</artifactId>
87         </dependency>
88
89         <dependency>
90             <groupId>org.slf4j</groupId>
91             <artifactId>slf4j-api</artifactId>
92         </dependency>
93
94         <dependency>
95             <groupId>org.slf4j</groupId>
96             <artifactId>jcl-over-slf4j</artifactId>
97         </dependency>
98
99         <dependency>
100             <groupId>org.json</groupId>
101             <artifactId>json</artifactId>
102         </dependency>
103
104
105         <dependency>
106             <groupId>com.google.guava</groupId>
107             <artifactId>guava</artifactId>
108         </dependency>
109
110
111     </dependencies>
112
113
114 </project>