blob: 8d90968ceb645a14faa6f3022b781a7c44ec82e3 [file] [log] [blame]
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -04001<?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>
Timoney, Dan (dt5972)a5f305d2018-05-30 17:36:02 -040021 <version>1.0.4-SNAPSHOT</version>
Timoney, Dan (dt5972)db9fffa2018-04-18 15:28:17 -040022 <relativePath/>
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040023 </parent>
24
25 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
26 <artifactId>ansible-adapter-bundle</artifactId>
Timoney, Dan (dt5972)a5f305d2018-05-30 17:36:02 -040027 <version>0.2.4-SNAPSHOT</version>
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040028 <packaging>bundle</packaging>
29 <name>ccsdk-sli-adaptors :: ansible-adapter :: ${project.artifactId}</name>
30
31 <dependencies>
Timoney, Dan (dt5972)3ce59992018-05-03 13:16:40 -040032 <dependency>
33 <groupId>com.att.eelf</groupId>
34 <artifactId>eelf-core</artifactId>
35 </dependency>
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040036 <dependency>
37 <groupId>commons-codec</groupId>
38 <artifactId>commons-codec</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>commons-logging</groupId>
42 <artifactId>commons-logging</artifactId>
43 <version>1.2</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.apache.httpcomponents</groupId>
48 <artifactId>httpclient</artifactId>
49 <version>${apache.httpcomponents.client.version}</version>
50 </dependency>
51
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040052
53 <!-- Needed to run test cases -->
54 <dependency>
55 <groupId>org.glassfish.jersey.core</groupId>
56 <artifactId>jersey-common</artifactId>
57 <version>2.9.1</version>
Timoney, Dan (dt5972)4869bd52018-04-24 11:10:08 -040058 <scope>test</scope>
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040059 </dependency>
60
61 <dependency>
62 <groupId>org.codehaus.jackson</groupId>
63 <artifactId>jackson-jaxrs</artifactId>
64 <version>1.9.13</version>
Timoney, Dan (dt5972)4869bd52018-04-24 11:10:08 -040065 <scope>test</scope>
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040066 </dependency>
67
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.mockito</groupId>
75 <artifactId>mockito-core</artifactId>
Timoney, Dan (dt5972)4869bd52018-04-24 11:10:08 -040076 <scope>test</scope>
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -040077 </dependency>
78 <dependency>
79 <groupId>org.onap.ccsdk.sli.core</groupId>
80 <artifactId>sli-common</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.onap.ccsdk.sli.core</groupId>
85 <artifactId>sli-provider</artifactId>
86 </dependency>
87
88 <dependency>
89 <groupId>equinoxSDK381</groupId>
90 <artifactId>org.eclipse.osgi</artifactId>
91 </dependency>
92
93 <dependency>
94 <groupId>org.slf4j</groupId>
95 <artifactId>slf4j-api</artifactId>
96 </dependency>
97
98 <dependency>
99 <groupId>org.slf4j</groupId>
100 <artifactId>jcl-over-slf4j</artifactId>
101 </dependency>
102
103 <dependency>
104 <groupId>org.json</groupId>
105 <artifactId>json</artifactId>
106 </dependency>
107
108
109 <dependency>
110 <groupId>com.google.guava</groupId>
111 <artifactId>guava</artifactId>
112 </dependency>
113
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -0400114
115 </dependencies>
116
117
Timoney, Dan (dt5972)99fe1a52018-03-29 12:31:45 -0400118</project>