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