Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | ================================================================================ |
| 8 | Copyright (C) 2017 Amdocs |
| 9 | ============================================================================= |
| 10 | 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 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 13 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 15 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 21 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 30 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 31 | <artifactId>appc-chef-adapter</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 33 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 35 | <artifactId>appc-chef-adapter-bundle</artifactId> |
| 36 | <packaging>bundle</packaging> |
| 37 | <name>APPC Chef Adapter - Bundle</name> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 38 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 39 | <properties> |
| 40 | <licenseDir>${project.parent.parent.parent.basedir}</licenseDir> |
| 41 | </properties> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 42 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.json</groupId> |
| 46 | <artifactId>json</artifactId> |
| 47 | <version>20160810</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>commons-codec</groupId> |
| 51 | <artifactId>commons-codec</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>commons-logging</groupId> |
| 55 | <artifactId>commons-logging</artifactId> |
| 56 | <version>1.2</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.httpcomponents</groupId> |
| 60 | <artifactId>httpcore</artifactId> |
Marcus G K Williams | c2f55b2 | 2017-09-07 17:16:09 -0700 | [diff] [blame] | 61 | <version>4.4.6</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 62 | </dependency> |
Marcus G K Williams | c2f55b2 | 2017-09-07 17:16:09 -0700 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.apache.httpcomponents</groupId> |
| 65 | <artifactId>httpclient</artifactId> |
| 66 | <version>4.5.3</version> |
| 67 | </dependency> |
| 68 | |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 69 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>org.bouncycastle</groupId> |
| 72 | <artifactId>bcpkix-jdk15on</artifactId> |
Taka Cho | 6158e39 | 2018-03-07 16:39:55 -0500 | [diff] [blame^] | 73 | <version>1.56</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.bouncycastle</groupId> |
| 77 | <artifactId>bcprov-jdk15on</artifactId> |
Taka Cho | 6158e39 | 2018-03-07 16:39:55 -0500 | [diff] [blame^] | 78 | <version>1.56</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 79 | </dependency> |
| 80 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 81 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 82 | <artifactId>appc-common</artifactId> |
| 83 | <version>${project.version}</version> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>javax</groupId> |
| 87 | <artifactId>javaee-api</artifactId> |
| 88 | <version>7.0</version> |
| 89 | </dependency> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 90 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 91 | <dependency> |
| 92 | <groupId>com.att.cdp</groupId> |
| 93 | <artifactId>cdp-pal-common</artifactId> |
| 94 | <scope>compile</scope> |
| 95 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 96 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>com.att.cdp</groupId> |
| 99 | <artifactId>cdp-pal-openstack</artifactId> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 102 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 103 | <dependency> |
| 104 | <groupId>javax.ws.rs</groupId> |
| 105 | <artifactId>javax.ws.rs-api</artifactId> |
| 106 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 107 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 108 | <!-- Jersey support needed for OpenStack connector and API version logic --> |
| 109 | <dependency> |
| 110 | <groupId>com.sun.jersey</groupId> |
| 111 | <artifactId>jersey-client</artifactId> |
| 112 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 113 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 114 | <dependency> |
| 115 | <groupId>com.sun.jersey</groupId> |
| 116 | <artifactId>jersey-json</artifactId> |
| 117 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 118 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>javax.xml.bind</groupId> |
| 121 | <artifactId>jaxb-api</artifactId> |
Taka | 0f18e35 | 2017-12-19 16:25:07 -0500 | [diff] [blame] | 122 | <version>2.2.3</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 123 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 124 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 125 | <dependency> |
| 126 | <groupId>javax.xml</groupId> |
| 127 | <artifactId>jaxp-api</artifactId> |
| 128 | <version>1.4.2</version> |
| 129 | </dependency> |
root | 99d63bf | 2017-07-13 09:43:35 -0400 | [diff] [blame] | 130 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 131 | <!-- Needed to run test cases --> |
| 132 | <dependency> |
| 133 | <groupId>org.glassfish.jersey.core</groupId> |
| 134 | <artifactId>jersey-common</artifactId> |
| 135 | <version>2.9.1</version> |
| 136 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 137 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 138 | <dependency> |
| 139 | <groupId>org.codehaus.jackson</groupId> |
| 140 | <artifactId>jackson-jaxrs</artifactId> |
Taka Cho | 65d7a30 | 2018-03-01 20:57:52 -0500 | [diff] [blame] | 141 | <version>1.9.13</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 142 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 143 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 144 | <dependency> |
| 145 | <groupId>org.apache.httpcomponents</groupId> |
| 146 | <artifactId>httpclient</artifactId> |
Taka Cho | bda7652 | 2018-03-07 11:42:59 -0500 | [diff] [blame] | 147 | <version>4.5.3</version> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 148 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 149 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 150 | <dependency> |
| 151 | <groupId>junit</groupId> |
| 152 | <artifactId>junit</artifactId> |
| 153 | <scope>test</scope> |
| 154 | </dependency> |
Michal Kabaj | 8408830 | 2018-02-06 13:54:02 +0100 | [diff] [blame] | 155 | <dependency> |
| 156 | <groupId>org.mockito</groupId> |
| 157 | <artifactId>mockito-core</artifactId> |
| 158 | </dependency> |
Michal Kabaj | 4e26089 | 2018-02-27 11:27:48 +0100 | [diff] [blame] | 159 | <dependency> |
| 160 | <groupId>org.assertj</groupId> |
| 161 | <artifactId>assertj-core</artifactId> |
| 162 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 163 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 164 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 165 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 166 | <artifactId>sli-common</artifactId> |
| 167 | <scope>compile</scope> |
| 168 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 169 | <exclusions> |
| 170 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 171 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 172 | <artifactId>dblib-provider</artifactId> |
| 173 | </exclusion> |
| 174 | </exclusions> |
| 175 | </dependency> |
| 176 | |
| 177 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 178 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 179 | <artifactId>sli-provider</artifactId> |
| 180 | <scope>compile</scope> |
| 181 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 182 | <exclusions> |
| 183 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 184 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 185 | <artifactId>dblib-provider</artifactId> |
| 186 | </exclusion> |
| 187 | </exclusions> |
| 188 | </dependency> |
| 189 | |
| 190 | <dependency> |
| 191 | <groupId>equinoxSDK381</groupId> |
| 192 | <artifactId>org.eclipse.osgi</artifactId> |
| 193 | </dependency> |
| 194 | |
| 195 | <dependency> |
| 196 | <groupId>org.slf4j</groupId> |
| 197 | <artifactId>slf4j-api</artifactId> |
| 198 | </dependency> |
| 199 | |
| 200 | <dependency> |
| 201 | <groupId>org.slf4j</groupId> |
| 202 | <artifactId>jcl-over-slf4j</artifactId> |
| 203 | </dependency> |
| 204 | |
| 205 | <dependency> |
Patrick Brady | ac62a4a | 2017-09-13 00:11:21 -0700 | [diff] [blame] | 206 | <groupId>org.mariadb.jdbc</groupId> |
| 207 | <artifactId>mariadb-java-client</artifactId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 208 | </dependency> |
| 209 | |
| 210 | <dependency> |
| 211 | <groupId>com.vmware</groupId> |
| 212 | <artifactId>vijava</artifactId> |
| 213 | <version>5.1</version> |
| 214 | <scope>compile</scope> |
| 215 | </dependency> |
| 216 | |
| 217 | <dependency> |
| 218 | <groupId>xerces</groupId> |
| 219 | <artifactId>xerces</artifactId> |
| 220 | <version>2.4.0</version> |
| 221 | <scope>provided</scope> |
| 222 | </dependency> |
| 223 | |
| 224 | </dependencies> |
| 225 | |
| 226 | <build> |
| 227 | <plugins> |
| 228 | <plugin> |
| 229 | <groupId>org.apache.felix</groupId> |
| 230 | <artifactId>maven-bundle-plugin</artifactId> |
| 231 | <extensions>true</extensions> |
| 232 | <configuration> |
| 233 | <instructions> |
| 234 | <Bundle-SymbolicName>appc-chef-adapter</Bundle-SymbolicName> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 235 | <Bundle-Activator>org.onap.appc.adapter.chef.ChefActivator</Bundle-Activator> |
| 236 | <Export-Package>org.onap.appc.adapter.chef</Export-Package> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 237 | <Import-Package> |
Patrick Brady | 66384fa | 2017-09-10 20:12:40 -0700 | [diff] [blame] | 238 | org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.* |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 239 | </Import-Package> |
| 240 | <Embed-Dependency> |
Patrick Brady | ac62a4a | 2017-09-13 00:11:21 -0700 | [diff] [blame] | 241 | *;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 242 | </Embed-Dependency> |
| 243 | <Embed-Transitive>true</Embed-Transitive> |
| 244 | </instructions> |
| 245 | |
| 246 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 247 | </configuration> |
| 248 | </plugin> |
| 249 | </plugins> |
| 250 | </build> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 251 | </project> |