blob: 70f76d6f780e4eb131c5aa7c0226b6edc1b14465 [file] [log] [blame]
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Patrick Brady10bba352017-07-19 12:09:28 -07004 ONAP : APPC
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04005 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04007 ================================================================================
Patrick Brady10bba352017-07-19 12:09:28 -07008 Copyright (C) 2017 Amdocs
9 =============================================================================
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040010 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
Patrick Brady10bba352017-07-19 12:09:28 -070021
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040022 ECOMP is a trademark and service mark of AT&T Intellectual Property.
Patrick Brady10bba352017-07-19 12:09:28 -070023 ============LICENSE_END=========================================================
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040024 -->
25<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">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.openecomp.appc</groupId>
29 <artifactId>appc-ansible-adapter</artifactId>
30 <version>1.1.0-SNAPSHOT</version>
31 </parent>
32
33 <artifactId>appc-ansible-adapter-bundle</artifactId>
34 <packaging>bundle</packaging>
35 <name>APPC Ansible Service Adapter - bundle</name>
36
37 <dependencies>
38 <dependency>
39 <groupId>commons-codec</groupId>
40 <artifactId>commons-codec</artifactId>
41 <version>1.9</version>
42 </dependency>
43 <dependency>
44 <groupId>commons-logging</groupId>
45 <artifactId>commons-logging</artifactId>
46 <version>1.2</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.apache.httpcomponents</groupId>
51 <artifactId>httpclient</artifactId>
52 <version>4.5.2</version>
53 </dependency>
54
55 <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
56 <dependency>
57 <groupId>org.openecomp.appc</groupId>
58 <artifactId>appc-common</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>javax</groupId>
64 <artifactId>javaee-api</artifactId>
65 <version>7.0</version>
66 </dependency>
67
68 <!--
69 ### DEPENDENCIES NOT REQUIRED
70
71 <dependency>
72 <groupId>jce</groupId>
73 <artifactId>jce</artifactId>
74 <version>1_2-do</version>
75 <scope>compile</scope>
76 </dependency>
77
78
79 <dependency>
80 <groupId>javax.ws.rs</groupId>
81 <artifactId>javax.ws.rs-api</artifactId>
82 <version>2.0</version>
83 </dependency>
84
85 <groupId>javax.xml.bind</groupId>
86 <artifactId>jaxb-api</artifactId>
87 <version>2.1</version>
88 </dependency>
89
90 <dependency>
91 <groupId>javax.xml</groupId>
92 <artifactId>jaxp-api</artifactId>
93 <version>1.4.2</version>
94 </dependency>
95
96 #########
97 -->
98
99 <!-- Needed to run test cases -->
100 <dependency>
101 <groupId>org.glassfish.jersey.core</groupId>
102 <artifactId>jersey-common</artifactId>
103 <version>2.9.1</version>
104 </dependency>
105
106 <dependency>
107 <groupId>org.codehaus.jackson</groupId>
108 <artifactId>jackson-jaxrs</artifactId>
109 <version>1.9.12</version>
110 </dependency>
111
112 <dependency>
113 <groupId>junit</groupId>
114 <artifactId>junit</artifactId>
115 <scope>test</scope>
116 </dependency>
117
118
119 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700120 <groupId>org.onap.ccsdk.sli.core</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400121 <artifactId>sli-common</artifactId>
122 <scope>compile</scope>
123 <!-- Added exclusion to prevent missing dependency issue on dblib -->
124 <exclusions>
125 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700126 <groupId>org.onap.ccsdk.sli.core</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400127 <artifactId>dblib-provider</artifactId>
128 </exclusion>
129 </exclusions>
130 </dependency>
131
132 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700133 <groupId>org.onap.ccsdk.sli.core</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400134 <artifactId>sli-provider</artifactId>
135 <scope>compile</scope>
136 <!-- Added exclusion to prevent missing dependency issue on dblib -->
137 <exclusions>
138 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700139 <groupId>org.onap.ccsdk.sli.core</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400140 <artifactId>dblib-provider</artifactId>
141 </exclusion>
142 </exclusions>
143 </dependency>
144
145 <dependency>
146 <groupId>equinoxSDK381</groupId>
147 <artifactId>org.eclipse.osgi</artifactId>
148 </dependency>
149
150 <dependency>
151 <groupId>org.slf4j</groupId>
152 <artifactId>slf4j-api</artifactId>
153 </dependency>
154
155 <dependency>
156 <groupId>org.slf4j</groupId>
157 <artifactId>jcl-over-slf4j</artifactId>
158 </dependency>
159
160 <dependency>
161 <groupId>mysql</groupId>
162 <artifactId>mysql-connector-java</artifactId>
163 <version>5.1.31</version>
164 <type>jar</type>
165 <scope>compile</scope>
166 </dependency>
167
168 <dependency>
169 <groupId>org.json</groupId>
170 <artifactId>json</artifactId>
171 <version>20160212</version>
172 </dependency>
173
174
175 <dependency>
176 <groupId>com.google.guava</groupId>
177 <artifactId>guava</artifactId>
178 <version>20.0</version>
179 </dependency>
180
181 <!--
182 <dependency>
183 <groupId>com.google.code.gson</groupId>
184 <artifactId>gson</artifactId>
185 <version>2.8.0</version>
186 </dependency>
187 -->
188
189 </dependencies>
190
191
192 <build>
193 <plugins>
194 <plugin>
195 <groupId>org.apache.felix</groupId>
196 <artifactId>maven-bundle-plugin</artifactId>
197 <extensions>true</extensions>
198 <configuration>
199 <instructions>
200 <Bundle-SymbolicName>appc-ansible-adapter</Bundle-SymbolicName>
201 <Bundle-Activator>org.openecomp.appc.adapter.ansible.AnsibleActivator</Bundle-Activator>
202 <Export-Package>org.openecomp.appc.adapter.ansible</Export-Package>
Patrick Brady76706002017-09-04 21:37:25 -0700203 <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*, javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*, javax.security.*</Import-Package>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400204 <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mysql-connector-java|xml-apis</Embed-Dependency>
205 <Embed-Transitive>true</Embed-Transitive>
206 </instructions>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400207 </configuration>
208 </plugin>
209 </plugins>
210 </build>
211</project>