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