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-chef-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-chef-adapter-bundle</artifactId> |
| 11 | <packaging>bundle</packaging> |
| 12 | <name>chef Adapter - bundle</name> |
| 13 | |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>commons-codec</groupId> |
| 17 | <artifactId>commons-codec</artifactId> |
| 18 | </dependency> |
| 19 | <!-- http://mvnrepository.com/artifact/commons-logging/commons-logging --> |
| 20 | <dependency> |
| 21 | <groupId>commons-logging</groupId> |
| 22 | <artifactId>commons-logging</artifactId> |
| 23 | <version>1.2</version> |
| 24 | </dependency> |
| 25 | <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore --> |
| 26 | <dependency> |
| 27 | <groupId>org.apache.httpcomponents</groupId> |
| 28 | <artifactId>httpcore</artifactId> |
| 29 | <version>4.4.4</version> |
| 30 | </dependency> |
| 31 | |
| 32 | <dependency> |
| 33 | <groupId>org.apache.httpcomponents</groupId> |
| 34 | <artifactId>httpclient</artifactId> |
| 35 | <version>4.5.1</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.bouncycastle</groupId> |
| 39 | <artifactId>bcpkix-jdk15on</artifactId> |
| 40 | <version>1.47</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.bouncycastle</groupId> |
| 44 | <artifactId>bcprov-jdk15on</artifactId> |
| 45 | <version>1.47</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.openecomp.appc</groupId> |
| 49 | <artifactId>appc-common</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | <classifier>jar-with-dependencies</classifier> |
| 52 | <scope>compile</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.openecomp.appc</groupId> |
| 56 | <artifactId>appc-common</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>javax</groupId> |
| 62 | <artifactId>javaee-api</artifactId> |
| 63 | <version>7.0</version> |
| 64 | </dependency> |
| 65 | <!-- <dependency> |
| 66 | <groupId>jce</groupId> |
| 67 | <artifactId>jce</artifactId> |
| 68 | <version>1_2-do</version> |
| 69 | <scope>compile</scope> |
| 70 | </dependency> --> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>com.att.cdp</groupId> |
| 74 | <artifactId>cdp-pal-common</artifactId> |
| 75 | <scope>compile</scope> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>com.att.cdp</groupId> |
| 80 | <artifactId>cdp-pal-openstack</artifactId> |
| 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>javax.ws.rs</groupId> |
| 86 | <artifactId>javax.ws.rs-api</artifactId> |
| 87 | </dependency> |
| 88 | |
| 89 | <!-- Jersey support needed for OpenStack connector and API version logic --> |
| 90 | <dependency> |
| 91 | <groupId>com.sun.jersey</groupId> |
| 92 | <artifactId>jersey-client</artifactId> |
| 93 | </dependency> |
| 94 | |
| 95 | <dependency> |
| 96 | <groupId>com.sun.jersey</groupId> |
| 97 | <artifactId>jersey-json</artifactId> |
| 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
| 101 | <groupId>javax.xml.bind</groupId> |
| 102 | <artifactId>jaxb-api</artifactId> |
| 103 | <version>2.1</version> |
| 104 | </dependency> |
| 105 | |
| 106 | <dependency> |
| 107 | <groupId>javax.xml</groupId> |
| 108 | <artifactId>jaxp-api</artifactId> |
| 109 | <version>1.4.2</version> |
| 110 | </dependency> |
| 111 | |
| 112 | <!-- Needed to run test cases --> |
| 113 | <dependency> |
| 114 | <groupId>org.glassfish.jersey.core</groupId> |
| 115 | <artifactId>jersey-common</artifactId> |
| 116 | <version>2.9.1</version> |
| 117 | </dependency> |
| 118 | |
| 119 | <dependency> |
| 120 | <groupId>org.codehaus.jackson</groupId> |
| 121 | <artifactId>jackson-jaxrs</artifactId> |
| 122 | <version>1.9.12</version> |
| 123 | </dependency> |
| 124 | |
| 125 | <dependency> |
| 126 | <groupId>commons-codec</groupId> |
| 127 | <artifactId>commons-codec</artifactId> |
| 128 | </dependency> |
| 129 | |
| 130 | <dependency> |
| 131 | <groupId>org.apache.httpcomponents</groupId> |
| 132 | <artifactId>httpclient</artifactId> |
| 133 | <version>4.5.1</version> |
| 134 | </dependency> |
| 135 | |
| 136 | <dependency> |
| 137 | <groupId>junit</groupId> |
| 138 | <artifactId>junit</artifactId> |
| 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | |
| 142 | <dependency> |
| 143 | <groupId>org.openecomp.sdnc.core</groupId> |
| 144 | <artifactId>sli-common</artifactId> |
| 145 | <scope>compile</scope> |
| 146 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 147 | <exclusions> |
| 148 | <exclusion> |
| 149 | <groupId>org.openecomp.sdnc.core</groupId> |
| 150 | <artifactId>dblib-provider</artifactId> |
| 151 | </exclusion> |
| 152 | </exclusions> |
| 153 | </dependency> |
| 154 | |
| 155 | <dependency> |
| 156 | <groupId>org.openecomp.sdnc.core</groupId> |
| 157 | <artifactId>sli-provider</artifactId> |
| 158 | <scope>compile</scope> |
| 159 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 160 | <exclusions> |
| 161 | <exclusion> |
| 162 | <groupId>org.openecomp.sdnc.core</groupId> |
| 163 | <artifactId>dblib-provider</artifactId> |
| 164 | </exclusion> |
| 165 | </exclusions> |
| 166 | </dependency> |
| 167 | |
| 168 | <dependency> |
| 169 | <groupId>equinoxSDK381</groupId> |
| 170 | <artifactId>org.eclipse.osgi</artifactId> |
| 171 | </dependency> |
| 172 | |
| 173 | <dependency> |
| 174 | <groupId>org.slf4j</groupId> |
| 175 | <artifactId>slf4j-api</artifactId> |
| 176 | </dependency> |
| 177 | |
| 178 | <dependency> |
| 179 | <groupId>org.slf4j</groupId> |
| 180 | <artifactId>jcl-over-slf4j</artifactId> |
| 181 | </dependency> |
| 182 | |
| 183 | <dependency> |
| 184 | <groupId>mysql</groupId> |
| 185 | <artifactId>mysql-connector-java</artifactId> |
| 186 | <version>5.1.31</version> |
| 187 | <type>jar</type> |
| 188 | <scope>compile</scope> |
| 189 | </dependency> |
| 190 | |
| 191 | <dependency> |
| 192 | <groupId>com.vmware</groupId> |
| 193 | <artifactId>vijava</artifactId> |
| 194 | <version>5.1</version> |
| 195 | <scope>compile</scope> |
| 196 | </dependency> |
| 197 | |
| 198 | <dependency> |
| 199 | <groupId>xerces</groupId> |
| 200 | <artifactId>xerces</artifactId> |
| 201 | <version>2.4.0</version> |
| 202 | <scope>provided</scope> |
| 203 | </dependency> |
| 204 | |
| 205 | </dependencies> |
| 206 | |
| 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-chef-adapter</Bundle-SymbolicName> |
| 216 | <Bundle-Activator>org.openecomp.appc.adapter.chef.ChefActivator</Bundle-Activator> |
| 217 | <Export-Package>org.openecomp.appc.adapter.chef</Export-Package> |
| 218 | <Import-Package>org.openecomp.sdnc.sli.*,org.osgi.framework.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*</Import-Package> |
| 219 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mysql-connector-java|xml-apis</Embed-Dependency> |
| 220 | <Embed-Transitive>true</Embed-Transitive> |
| 221 | </instructions> |
| 222 | |
| 223 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 224 | </configuration> |
| 225 | </plugin> |
| 226 | </plugins> |
| 227 | </build> |
| 228 | </project> |