Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | f6332bd | 2018-06-13 13:07:38 -0400 | [diff] [blame^] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 7 | Copyright (C) 2017 Amdocs |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 21 | --> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.appc</groupId> |
| 27 | <artifactId>appc-iaas-adapter</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 28 | <version>1.4.0-SNAPSHOT</version> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 29 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 30 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 31 | <artifactId>appc-iaas-adapter-bundle</artifactId> |
| 32 | <packaging>bundle</packaging> |
| 33 | <name>IaaS Adapter - bundle</name> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.appc</groupId> |
| 38 | <artifactId>appc-common</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 41 | <exclusions> |
| 42 | <exclusion> |
| 43 | <groupId>javax</groupId> |
| 44 | <artifactId>javaee-api</artifactId> |
| 45 | </exclusion> |
| 46 | </exclusions> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 47 | </dependency> |
| 48 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>com.att.cdp</groupId> |
| 51 | <artifactId>cdp-pal-openstack</artifactId> |
| 52 | <scope>compile</scope> |
| 53 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 54 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 55 | <dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 56 | <groupId>org.glassfish.jersey.core</groupId> |
| 57 | <artifactId>jersey-common</artifactId> |
| 58 | <version>2.25.1</version> |
| 59 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 60 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 61 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 62 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 63 | <dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 64 | <groupId>org.glassfish.jersey.core</groupId> |
| 65 | <artifactId>jersey-client</artifactId> |
| 66 | <version>2.25.1</version> |
| 67 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 68 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 69 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 70 | <dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 71 | <groupId>org.glassfish.jersey.core</groupId> |
| 72 | <artifactId>jersey-server</artifactId> |
| 73 | <version>2.25.1</version> |
| 74 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 75 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 76 | |
| 77 | <!-- <dependency> --> |
| 78 | <!-- <groupId>javax</groupId> --> |
| 79 | <!-- <artifactId>javaee-api</artifactId> --> |
| 80 | <!-- <version>7.0</version> --> |
| 81 | <!-- </dependency> --> |
| 82 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>javax.ws.rs</groupId> |
| 85 | <artifactId>javax.ws.rs-api</artifactId> |
| 86 | <version>2.0.1</version> |
| 87 | <scope>compile</scope> |
| 88 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 89 | |
| 90 | <!-- <dependency> --> |
| 91 | <!-- <groupId>org.glassfish.jersey.containers</groupId> --> |
| 92 | <!-- <artifactId>jersey-container-servlet</artifactId> --> |
| 93 | <!-- <version>2.25.1</version> --> |
| 94 | <!-- <scope>provided</scope> --> |
| 95 | <!-- </dependency> --> |
| 96 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 99 | <artifactId>jersey-grizzly-connector</artifactId> |
| 100 | <version>2.25.1</version> |
| 101 | <scope>compile</scope> |
| 102 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 103 | <!-- <dependency> --> |
| 104 | <!-- <groupId>org.glassfish.jersey.media</groupId> --> |
| 105 | <!-- <artifactId>jersey-media-json-jackson</artifactId> --> |
| 106 | <!-- <version>2.25.1</version> --> |
| 107 | <!-- </dependency> --> |
| 108 | |
| 109 | <!-- <dependency> --> |
| 110 | <!-- <groupId>com.fasterxml.jackson.jaxrs</groupId> --> |
| 111 | <!-- <artifactId>jackson-jaxrs-base</artifactId> --> |
| 112 | <!-- </dependency> --> |
| 113 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 114 | <dependency> |
| 115 | <groupId>javax.xml</groupId> |
| 116 | <artifactId>jaxp-api</artifactId> |
| 117 | <version>1.4.2</version> |
| 118 | <scope>compile</scope> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 119 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 120 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 121 | <dependency> |
| 122 | <groupId>javax.xml.bind</groupId> |
| 123 | <artifactId>jaxb-api</artifactId> |
Taka | 0f18e35 | 2017-12-19 16:25:07 -0500 | [diff] [blame] | 124 | <version>2.2.3</version> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 125 | <scope>compile</scope> |
| 126 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 127 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 128 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 129 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 130 | <artifactId>sli-common</artifactId> |
| 131 | <scope>provided</scope> |
| 132 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 133 | <exclusions> |
| 134 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 135 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 136 | <artifactId>dblib-provider</artifactId> |
| 137 | </exclusion> |
| 138 | </exclusions> |
| 139 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 140 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 141 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 142 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 143 | <artifactId>sli-provider</artifactId> |
| 144 | <scope>provided</scope> |
| 145 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 146 | <exclusions> |
| 147 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 148 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 149 | <artifactId>dblib-provider</artifactId> |
| 150 | </exclusion> |
| 151 | </exclusions> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 152 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 153 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 154 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 155 | <!-- <dependency> --> |
| 156 | <!-- <groupId>org.codehaus.jackson</groupId> --> |
| 157 | <!-- <artifactId>jackson-jaxrs</artifactId> --> |
Taka Cho | 65d7a30 | 2018-03-01 20:57:52 -0500 | [diff] [blame] | 158 | <!-- <version>1.9.13</version> --> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 159 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 160 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 161 | <!-- <dependency> --> |
| 162 | <!-- <groupId>commons-codec</groupId> --> |
| 163 | <!-- <artifactId>commons-codec</artifactId> --> |
| 164 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 165 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 166 | <!-- <dependency> --> |
| 167 | <!-- <groupId>org.apache.httpcomponents</groupId> --> |
| 168 | <!-- <artifactId>httpclient</artifactId> --> |
Taka Cho | bda7652 | 2018-03-07 11:42:59 -0500 | [diff] [blame] | 169 | <!-- <version>4.5.3</version> --> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 170 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 171 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 172 | <dependency> |
| 173 | <groupId>junit</groupId> |
| 174 | <artifactId>junit</artifactId> |
| 175 | <scope>test</scope> |
| 176 | </dependency> |
Michal Kabaj | 3756637 | 2017-12-19 14:36:59 +0100 | [diff] [blame] | 177 | <dependency> |
| 178 | <groupId>org.mockito</groupId> |
| 179 | <artifactId>mockito-core</artifactId> |
| 180 | <scope>test</scope> |
| 181 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 182 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 183 | <!-- <dependency> --> |
| 184 | <!-- <groupId>equinoxSDK381</groupId> --> |
| 185 | <!-- <artifactId>org.eclipse.osgi</artifactId> --> |
| 186 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 187 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 188 | <!-- <dependency> --> |
| 189 | <!-- <groupId>org.slf4j</groupId> --> |
| 190 | <!-- <artifactId>slf4j-api</artifactId> --> |
| 191 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 192 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 193 | <!-- <dependency> --> |
| 194 | <!-- <groupId>org.slf4j</groupId> --> |
| 195 | <!-- <artifactId>jcl-over-slf4j</artifactId> --> |
| 196 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 197 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 198 | <!-- <dependency> --> |
| 199 | <!-- <groupId>xerces</groupId> --> |
| 200 | <!-- <artifactId>xerces</artifactId> --> |
| 201 | <!-- <version>2.4.0</version> --> |
| 202 | <!-- <scope>provided</scope> --> |
| 203 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 204 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 205 | <!-- <dependency> --> |
| 206 | <!-- <groupId>org.apache.httpcomponents</groupId> --> |
| 207 | <!-- <artifactId>httpcore</artifactId> --> |
| 208 | <!-- <version>${apache.httpcomponents.version}</version> --> |
| 209 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 210 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 211 | <!-- <dependency> --> |
| 212 | <!-- <groupId>commons-logging</groupId> --> |
| 213 | <!-- <artifactId>commons-logging</artifactId> --> |
| 214 | <!-- <version>1.2</version> --> |
| 215 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 216 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 217 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 218 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 219 | <build> |
| 220 | <plugins> |
| 221 | <plugin> |
| 222 | <groupId>org.apache.felix</groupId> |
| 223 | <artifactId>maven-bundle-plugin</artifactId> |
| 224 | <extensions>true</extensions> |
| 225 | <configuration> |
| 226 | <instructions> |
| 227 | <Bundle-SymbolicName>appc-iaas-adapter</Bundle-SymbolicName> |
| 228 | <Bundle-Activator>org.onap.appc.adapter.iaas.AppcProviderAdapterActivator</Bundle-Activator> |
| 229 | <Export-Package>org.onap.appc.adapter.iaas,com.att.cdp.zones.model</Export-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 230 | <DynamicImport-Package>javax.*</DynamicImport-Package> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 231 | <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,javax.net.ssl,org.xml.sax</Import-Package> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 232 | <!-- <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,javax.ws.rs.*,javax.net.*,javax.xml.*,org.xml.*</Import-Package> --> |
| 233 | <!-- <Import-Package>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.*,javax.xml.*</Import-Package> --> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 234 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!org.eclipse.osgi|slf4j-api|jcl-over-slf4j|</Embed-Dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 235 | <!-- <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency> --> |
| 236 | <Embed-Transitive>true</Embed-Transitive> |
| 237 | </instructions> |
| 238 | </configuration> |
| 239 | </plugin> |
| 240 | </plugins> |
| 241 | </build> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 242 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 243 | <profiles> |
| 244 | <profile> |
| 245 | <id>NonSlowTests</id> |
| 246 | <activation> |
| 247 | <activeByDefault>true</activeByDefault> |
| 248 | </activation> |
| 249 | <build> |
| 250 | <plugins> |
| 251 | <plugin> |
| 252 | <groupId>org.apache.maven.plugins</groupId> |
| 253 | <artifactId>maven-surefire-plugin</artifactId> |
| 254 | <configuration> |
| 255 | <excludedGroups>org.onap.appc.adapter.iaas.impl.TestProviderAdapterImpl</excludedGroups> |
| 256 | </configuration> |
| 257 | </plugin> |
| 258 | </plugins> |
| 259 | </build> |
| 260 | </profile> |
| 261 | </profiles> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 262 | </project> |