Merging in bug fixes
[appc.git] / appc-adapters / appc-chef-adapter / appc-chef-adapter-bundle / pom.xml
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"
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.openecomp.appc</groupId>
7                 <artifactId>appc-chef-adapter</artifactId>
8                 <version>1.1.0-SNAPSHOT</version>
9         </parent>
10
11         <artifactId>appc-chef-adapter-bundle</artifactId>
12         <packaging>bundle</packaging>
13         <name>chef Adapter - bundle</name>
14
15         <dependencies>
16         <dependency>
17                         <groupId>org.json</groupId>
18                         <artifactId>json</artifactId>
19                         <version>20160810</version>
20                 </dependency>
21                 <dependency>
22                         <groupId>org.json</groupId>
23                         <artifactId>json</artifactId>
24                         <version>20160810</version>
25                 </dependency>
26                 <dependency>
27                         <groupId>commons-codec</groupId>
28                         <artifactId>commons-codec</artifactId>
29                 </dependency>
30                 <!-- http://mvnrepository.com/artifact/commons-logging/commons-logging -->
31                 <dependency>
32                         <groupId>commons-logging</groupId>
33                         <artifactId>commons-logging</artifactId>
34                         <version>1.2</version>
35                 </dependency>
36                 <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
37                 <dependency>
38                         <groupId>org.apache.httpcomponents</groupId>
39                         <artifactId>httpcore</artifactId>
40                         <version>4.4.4</version>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>org.bouncycastle</groupId>
45                         <artifactId>bcpkix-jdk15on</artifactId>
46                         <version>1.55</version>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.bouncycastle</groupId>
50                         <artifactId>bcprov-jdk15on</artifactId>
51                         <version>1.55</version>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.openecomp.appc</groupId>
55                         <artifactId>appc-common</artifactId>
56                         <version>${project.version}</version>
57                 </dependency>
58                 <dependency>
59                         <groupId>javax</groupId>
60                         <artifactId>javaee-api</artifactId>
61                         <version>7.0</version>
62                 </dependency>
63
64                 <dependency>
65                         <groupId>com.att.cdp</groupId>
66                         <artifactId>cdp-pal-common</artifactId>
67                         <scope>compile</scope>
68                 </dependency>
69
70
71                 <dependency>
72                         <groupId>org.codehaus.jackson</groupId>
73                         <artifactId>jackson-jaxrs</artifactId>
74                         <version>1.9.12</version>
75                 </dependency>
76
77                 <dependency>
78                         <groupId>org.apache.httpcomponents</groupId>
79                         <artifactId>httpclient</artifactId>
80                         <version>4.5.1</version>
81                 </dependency>
82
83                 <dependency>
84                         <groupId>junit</groupId>
85                         <artifactId>junit</artifactId>
86                         <scope>test</scope>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.openecomp.sdnc.core</groupId>
91                         <artifactId>sli-common</artifactId>
92                         <scope>compile</scope>
93                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
94                         <exclusions>
95                                 <exclusion>
96                                         <groupId>org.openecomp.sdnc.core</groupId>
97                                         <artifactId>dblib-provider</artifactId>
98                                 </exclusion>
99                         </exclusions>
100                 </dependency>
101
102                 <dependency>
103                         <groupId>org.openecomp.sdnc.core</groupId>
104                         <artifactId>sli-provider</artifactId>
105                         <scope>compile</scope>
106                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
107                         <exclusions>
108                                 <exclusion>
109                                         <groupId>org.openecomp.sdnc.core</groupId>
110                                         <artifactId>dblib-provider</artifactId>
111                                 </exclusion>
112                         </exclusions>
113                 </dependency>
114
115                 <dependency>
116                         <groupId>equinoxSDK381</groupId>
117                         <artifactId>org.eclipse.osgi</artifactId>
118                 </dependency>
119
120                 <dependency>
121                         <groupId>org.slf4j</groupId>
122                         <artifactId>slf4j-api</artifactId>
123                 </dependency>
124
125                 <dependency>
126                         <groupId>org.slf4j</groupId>
127                         <artifactId>jcl-over-slf4j</artifactId>
128                 </dependency>
129
130
131                 <dependency>
132                         <groupId>com.vmware</groupId>
133                         <artifactId>vijava</artifactId>
134                         <version>5.1</version>
135                         <scope>compile</scope>
136                 </dependency>
137
138                 <dependency>
139                         <groupId>xerces</groupId>
140                         <artifactId>xerces</artifactId>
141                         <version>2.4.0</version>
142                         <scope>provided</scope>
143                 </dependency>
144
145         </dependencies>
146
147         <build>
148                 <plugins>
149                         <plugin>
150                                 <groupId>org.apache.felix</groupId>
151                                 <artifactId>maven-bundle-plugin</artifactId>
152                                 <extensions>true</extensions>
153                                 <configuration>
154                                         <instructions>
155                                                 <Bundle-SymbolicName>appc-chef-adapter</Bundle-SymbolicName>
156                                                 <Bundle-Activator>org.openecomp.appc.adapter.chef.ChefActivator</Bundle-Activator>
157                                                 <Export-Package>org.openecomp.appc.adapter.chef</Export-Package>
158                                                 <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.naming.*,javax.security.auth.*</Import-Package>
159                                                 <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|xml-apis</Embed-Dependency>
160                                                 <Embed-Transitive>true</Embed-Transitive>
161                                         </instructions>
162
163         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> 
164                                 </configuration>
165                         </plugin>
166                 </plugins>
167         </build>
168 </project>