Release ccsdk/sli/adaptors
[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
16 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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
19     <parent>
20         <groupId>org.onap.ccsdk.parent</groupId>
21         <artifactId>binding-parent</artifactId>
22         <version>2.1.0</version>
23         <relativePath/>
24     </parent>
25
26     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
27     <artifactId>ansible-adapter-bundle</artifactId>
28     <version>1.1.0</version>
29     <packaging>bundle</packaging>
30
31     <name>ccsdk-sli-adaptors :: ansible-adapter :: ${project.artifactId}</name>
32
33     <properties>
34         <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
35         <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
36     </properties>
37
38     <dependencyManagement>
39         <dependencies>
40             <dependency>
41                 <groupId>org.onap.ccsdk.sli.core</groupId>
42                 <artifactId>sli-core-artifacts</artifactId>
43                 <version>${ccsdk.sli.core.version}</version>
44                 <type>pom</type>
45                 <scope>import</scope>
46             </dependency>
47         </dependencies>
48     </dependencyManagement>
49     <dependencies>
50         <dependency>
51             <groupId>com.att.eelf</groupId>
52             <artifactId>eelf-core</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>commons-codec</groupId>
56             <artifactId>commons-codec</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>commons-logging</groupId>
60             <artifactId>commons-logging</artifactId>
61         </dependency>
62
63         <dependency>
64             <groupId>org.apache.httpcomponents</groupId>
65             <artifactId>httpclient</artifactId>
66         </dependency>
67
68
69         <!-- Needed to run test cases -->
70         <dependency>
71             <groupId>org.glassfish.jersey.core</groupId>
72             <artifactId>jersey-common</artifactId>
73             <scope>test</scope>
74         </dependency>
75
76         <dependency>
77             <groupId>org.codehaus.jackson</groupId>
78             <artifactId>jackson-jaxrs</artifactId>
79             <scope>test</scope>
80         </dependency>
81
82         <dependency>
83             <groupId>junit</groupId>
84             <artifactId>junit</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.mockito</groupId>
89             <artifactId>mockito-core</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.onap.ccsdk.sli.core</groupId>
94             <artifactId>sli-common</artifactId>
95             <scope>provided</scope>
96         </dependency>
97
98         <dependency>
99             <groupId>org.onap.ccsdk.sli.core</groupId>
100             <artifactId>sli-provider</artifactId>
101             <scope>provided</scope>
102         </dependency>
103
104         <dependency>
105             <groupId>org.osgi</groupId>
106             <artifactId>org.osgi.core</artifactId>
107             <scope>provided</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.slf4j</groupId>
111             <artifactId>slf4j-api</artifactId>
112         </dependency>
113
114         <dependency>
115             <groupId>org.slf4j</groupId>
116             <artifactId>jcl-over-slf4j</artifactId>
117         </dependency>
118
119         <dependency>
120             <groupId>org.json</groupId>
121             <artifactId>json</artifactId>
122         </dependency>
123
124
125         <dependency>
126             <groupId>com.google.guava</groupId>
127             <artifactId>guava</artifactId>
128         </dependency>
129
130
131     </dependencies>
132 </project>