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