Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.appc</groupId> |
| 7 | <artifactId>appc-iaas-adapter</artifactId> |
| 8 | <version>1.3.0-SNAPSHOT</version> |
| 9 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 10 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 11 | <artifactId>appc-iaas-adapter-bundle</artifactId> |
| 12 | <packaging>bundle</packaging> |
| 13 | <name>IaaS Adapter - bundle</name> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 14 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>org.onap.appc</groupId> |
| 18 | <artifactId>appc-common</artifactId> |
| 19 | <version>${project.version}</version> |
| 20 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 21 | <exclusions> |
| 22 | <exclusion> |
| 23 | <groupId>javax</groupId> |
| 24 | <artifactId>javaee-api</artifactId> |
| 25 | </exclusion> |
| 26 | </exclusions> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 27 | </dependency> |
| 28 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 29 | <dependency> |
| 30 | <groupId>com.att.cdp</groupId> |
| 31 | <artifactId>cdp-pal-openstack</artifactId> |
| 32 | <scope>compile</scope> |
| 33 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 35 | <dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 36 | <groupId>org.mockito</groupId> |
| 37 | <artifactId>mockito-core</artifactId> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
| 42 | <groupId>org.glassfish.jersey.core</groupId> |
| 43 | <artifactId>jersey-common</artifactId> |
| 44 | <version>2.25.1</version> |
| 45 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 46 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 47 | |
Takamune Cho | b1c754c | 2017-12-18 19:20:35 -0600 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>org.mockito</groupId> |
| 50 | <artifactId>mockito-core</artifactId> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 53 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 54 | <dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 55 | <groupId>org.glassfish.jersey.core</groupId> |
| 56 | <artifactId>jersey-client</artifactId> |
| 57 | <version>2.25.1</version> |
| 58 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 59 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 60 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 61 | <dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 62 | <groupId>org.glassfish.jersey.core</groupId> |
| 63 | <artifactId>jersey-server</artifactId> |
| 64 | <version>2.25.1</version> |
| 65 | <scope>compile</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 66 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 67 | |
| 68 | <!-- <dependency> --> |
| 69 | <!-- <groupId>javax</groupId> --> |
| 70 | <!-- <artifactId>javaee-api</artifactId> --> |
| 71 | <!-- <version>7.0</version> --> |
| 72 | <!-- </dependency> --> |
| 73 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>javax.ws.rs</groupId> |
| 76 | <artifactId>javax.ws.rs-api</artifactId> |
| 77 | <version>2.0.1</version> |
| 78 | <scope>compile</scope> |
| 79 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 80 | |
| 81 | <!-- <dependency> --> |
| 82 | <!-- <groupId>org.glassfish.jersey.containers</groupId> --> |
| 83 | <!-- <artifactId>jersey-container-servlet</artifactId> --> |
| 84 | <!-- <version>2.25.1</version> --> |
| 85 | <!-- <scope>provided</scope> --> |
| 86 | <!-- </dependency> --> |
| 87 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 90 | <artifactId>jersey-grizzly-connector</artifactId> |
| 91 | <version>2.25.1</version> |
| 92 | <scope>compile</scope> |
| 93 | </dependency> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 94 | <!-- <dependency> --> |
| 95 | <!-- <groupId>org.glassfish.jersey.media</groupId> --> |
| 96 | <!-- <artifactId>jersey-media-json-jackson</artifactId> --> |
| 97 | <!-- <version>2.25.1</version> --> |
| 98 | <!-- </dependency> --> |
| 99 | |
| 100 | <!-- <dependency> --> |
| 101 | <!-- <groupId>com.fasterxml.jackson.jaxrs</groupId> --> |
| 102 | <!-- <artifactId>jackson-jaxrs-base</artifactId> --> |
| 103 | <!-- </dependency> --> |
| 104 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 105 | <dependency> |
| 106 | <groupId>javax.xml</groupId> |
| 107 | <artifactId>jaxp-api</artifactId> |
| 108 | <version>1.4.2</version> |
| 109 | <scope>compile</scope> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 110 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 111 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 112 | <dependency> |
| 113 | <groupId>javax.xml.bind</groupId> |
| 114 | <artifactId>jaxb-api</artifactId> |
Taka | 0f18e35 | 2017-12-19 16:25:07 -0500 | [diff] [blame^] | 115 | <version>2.2.3</version> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 116 | <scope>compile</scope> |
| 117 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 118 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 119 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 120 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 121 | <artifactId>sli-common</artifactId> |
| 122 | <scope>provided</scope> |
| 123 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 124 | <exclusions> |
| 125 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 126 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 127 | <artifactId>dblib-provider</artifactId> |
| 128 | </exclusion> |
| 129 | </exclusions> |
| 130 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 131 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 132 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 133 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 134 | <artifactId>sli-provider</artifactId> |
| 135 | <scope>provided</scope> |
| 136 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 137 | <exclusions> |
| 138 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 139 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 140 | <artifactId>dblib-provider</artifactId> |
| 141 | </exclusion> |
| 142 | </exclusions> |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 143 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 144 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 145 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 146 | <!-- <dependency> --> |
| 147 | <!-- <groupId>org.codehaus.jackson</groupId> --> |
| 148 | <!-- <artifactId>jackson-jaxrs</artifactId> --> |
| 149 | <!-- <version>1.9.12</version> --> |
| 150 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 151 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 152 | <!-- <dependency> --> |
| 153 | <!-- <groupId>commons-codec</groupId> --> |
| 154 | <!-- <artifactId>commons-codec</artifactId> --> |
| 155 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 156 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 157 | <!-- <dependency> --> |
| 158 | <!-- <groupId>org.apache.httpcomponents</groupId> --> |
| 159 | <!-- <artifactId>httpclient</artifactId> --> |
| 160 | <!-- <version>4.5.1</version> --> |
| 161 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 162 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 163 | <dependency> |
| 164 | <groupId>junit</groupId> |
| 165 | <artifactId>junit</artifactId> |
| 166 | <scope>test</scope> |
| 167 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 168 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 169 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 170 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 171 | <!-- <dependency> --> |
| 172 | <!-- <groupId>equinoxSDK381</groupId> --> |
| 173 | <!-- <artifactId>org.eclipse.osgi</artifactId> --> |
| 174 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 175 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 176 | <!-- <dependency> --> |
| 177 | <!-- <groupId>org.slf4j</groupId> --> |
| 178 | <!-- <artifactId>slf4j-api</artifactId> --> |
| 179 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 180 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 181 | <!-- <dependency> --> |
| 182 | <!-- <groupId>org.slf4j</groupId> --> |
| 183 | <!-- <artifactId>jcl-over-slf4j</artifactId> --> |
| 184 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 185 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 186 | <!-- <dependency> --> |
| 187 | <!-- <groupId>xerces</groupId> --> |
| 188 | <!-- <artifactId>xerces</artifactId> --> |
| 189 | <!-- <version>2.4.0</version> --> |
| 190 | <!-- <scope>provided</scope> --> |
| 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.apache.httpcomponents</groupId> --> |
| 195 | <!-- <artifactId>httpcore</artifactId> --> |
| 196 | <!-- <version>${apache.httpcomponents.version}</version> --> |
| 197 | <!-- </dependency> --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 198 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 199 | <!-- <dependency> --> |
| 200 | <!-- <groupId>commons-logging</groupId> --> |
| 201 | <!-- <artifactId>commons-logging</artifactId> --> |
| 202 | <!-- <version>1.2</version> --> |
| 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 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 206 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 207 | <build> |
| 208 | <plugins> |
| 209 | <plugin> |
| 210 | <groupId>org.apache.felix</groupId> |
| 211 | <artifactId>maven-bundle-plugin</artifactId> |
| 212 | <extensions>true</extensions> |
| 213 | <configuration> |
| 214 | <instructions> |
| 215 | <Bundle-SymbolicName>appc-iaas-adapter</Bundle-SymbolicName> |
| 216 | <Bundle-Activator>org.onap.appc.adapter.iaas.AppcProviderAdapterActivator</Bundle-Activator> |
| 217 | <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] | 218 | <DynamicImport-Package>javax.*</DynamicImport-Package> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 219 | <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] | 220 | <!-- <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,javax.ws.rs.*,javax.net.*,javax.xml.*,org.xml.*</Import-Package> --> |
| 221 | <!-- <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] | 222 | <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] | 223 | <!-- <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency> --> |
| 224 | <Embed-Transitive>true</Embed-Transitive> |
| 225 | </instructions> |
| 226 | </configuration> |
| 227 | </plugin> |
| 228 | </plugins> |
| 229 | </build> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 230 | |
Skip Wonnell | 17c2c59 | 2017-12-16 18:48:27 -0600 | [diff] [blame] | 231 | <profiles> |
| 232 | <profile> |
| 233 | <id>NonSlowTests</id> |
| 234 | <activation> |
| 235 | <activeByDefault>true</activeByDefault> |
| 236 | </activation> |
| 237 | <build> |
| 238 | <plugins> |
| 239 | <plugin> |
| 240 | <groupId>org.apache.maven.plugins</groupId> |
| 241 | <artifactId>maven-surefire-plugin</artifactId> |
| 242 | <configuration> |
| 243 | <excludedGroups>org.onap.appc.adapter.iaas.impl.TestProviderAdapterImpl</excludedGroups> |
| 244 | </configuration> |
| 245 | </plugin> |
| 246 | </plugins> |
| 247 | </build> |
| 248 | </profile> |
| 249 | </profiles> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 250 | </project> |