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