security issue jackson-mapper 1.9.12
[appc.git] / appc-adapters / appc-rest-adapter / appc-rest-adapter-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <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">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc</groupId>
27                 <artifactId>appc-rest-adapter</artifactId>
28                 <version>1.3.0-SNAPSHOT</version>
29         </parent>
30
31         <artifactId>appc-rest-adapter-bundle</artifactId>
32         <packaging>bundle</packaging>
33         <name>rest Adapter - bundle</name>
34
35         <dependencies>
36                 <dependency>
37                         <groupId>commons-logging</groupId>
38                         <artifactId>commons-logging</artifactId>
39                         <version>1.2</version>
40                 </dependency>
41                 <dependency>
42                         <groupId>org.apache.httpcomponents</groupId>
43                         <artifactId>httpcore</artifactId>
44                         <version>4.4.4</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.bouncycastle</groupId>
48                         <artifactId>bcpkix-jdk15on</artifactId>
49                         </dependency>
50                 <dependency>
51                         <groupId>org.bouncycastle</groupId>
52                         <artifactId>bcprov-jdk15on</artifactId>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.onap.appc</groupId>
56                         <artifactId>appc-common</artifactId>
57                         <version>${project.version}</version>
58                 </dependency>
59                         <dependency>
60                         <groupId>org.onap.appc</groupId>
61                         <artifactId>appc-common</artifactId>
62                         <version>${project.version}</version>
63                         <classifier>jar-with-dependencies</classifier>
64                         <scope>test</scope>
65                 </dependency>
66                 <dependency>
67                         <groupId>javax</groupId>
68                         <artifactId>javaee-api</artifactId>
69                         <version>7.0</version>
70                 </dependency>
71 <!--            <dependency> -->
72 <!--                    <groupId>jce</groupId> -->
73 <!--                    <artifactId>jce</artifactId> -->
74 <!--                    <version>1_2-do</version> -->
75 <!--                    <scope>compile</scope> -->
76 <!--            </dependency> -->
77
78                 <dependency>
79                         <groupId>com.att.cdp</groupId>
80                         <artifactId>cdp-pal-common</artifactId>
81                         <scope>compile</scope>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>com.att.cdp</groupId>
86                         <artifactId>cdp-pal-openstack</artifactId>
87                         <scope>compile</scope>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>javax.ws.rs</groupId>
92                         <artifactId>javax.ws.rs-api</artifactId>
93                         </dependency>
94
95                 <!-- Jersey support needed for OpenStack connector and API version logic -->
96                 <dependency>
97                         <groupId>com.sun.jersey</groupId>
98                         <artifactId>jersey-client</artifactId>
99                         </dependency>
100
101                 <dependency>
102                 <groupId>org.json</groupId>
103                 <artifactId>json</artifactId>
104                 </dependency>
105                 <dependency>
106                         <groupId>com.sun.jersey</groupId>
107                         <artifactId>jersey-json</artifactId>
108                         </dependency>
109
110                 <dependency>
111                         <groupId>javax.xml.bind</groupId>
112                         <artifactId>jaxb-api</artifactId>
113                         <version>2.2.3</version>
114                 </dependency>
115
116                 <dependency>
117                         <groupId>javax.xml</groupId>
118                         <artifactId>jaxp-api</artifactId>
119                         <version>1.4.2</version>
120                 </dependency>
121
122                 <!-- Needed to run test cases -->
123                 <dependency>
124                         <groupId>org.glassfish.jersey.core</groupId>
125                         <artifactId>jersey-common</artifactId>
126                         <version>2.9.1</version>
127             <scope>test</scope>
128                 </dependency>
129
130                 <dependency>
131                         <groupId>org.codehaus.jackson</groupId>
132                         <artifactId>jackson-jaxrs</artifactId>
133                         <version>1.9.13</version>
134                 </dependency>
135
136                 <dependency>
137                         <groupId>commons-codec</groupId>
138                         <artifactId>commons-codec</artifactId>
139                 </dependency>
140
141                 <dependency>
142                         <groupId>junit</groupId>
143                         <artifactId>junit</artifactId>
144                         <scope>test</scope>
145                 </dependency>
146
147                 <dependency>
148                         <groupId>org.onap.ccsdk.sli.core</groupId>
149                         <artifactId>sli-common</artifactId>
150                         <scope>compile</scope>
151                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
152                         <exclusions>
153                                 <exclusion>
154                                         <groupId>org.onap.ccsdk.sli.core</groupId>
155                                         <artifactId>dblib-provider</artifactId>
156                                 </exclusion>
157                         </exclusions>
158                 </dependency>
159
160                 <dependency>
161                         <groupId>org.onap.ccsdk.sli.core</groupId>
162                         <artifactId>sli-provider</artifactId>
163                         <scope>compile</scope>
164                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
165                         <exclusions>
166                                 <exclusion>
167                                         <groupId>org.onap.ccsdk.sli.core</groupId>
168                                         <artifactId>dblib-provider</artifactId>
169                                 </exclusion>
170                         </exclusions>
171                 </dependency>
172
173 <!--            <dependency> -->
174 <!--                    <groupId>equinoxSDK381</groupId> -->
175 <!--                    <artifactId>org.eclipse.osgi</artifactId> -->
176 <!--            </dependency> -->
177
178                 <dependency>
179                         <groupId>org.slf4j</groupId>
180                         <artifactId>slf4j-api</artifactId>
181                 </dependency>
182
183                 <dependency>
184                         <groupId>org.slf4j</groupId>
185                         <artifactId>jcl-over-slf4j</artifactId>
186                         </dependency>
187
188                         <dependency>
189                                 <groupId>org.mariadb.jdbc</groupId>
190                                 <artifactId>mariadb-java-client</artifactId>
191                         </dependency>
192
193                 <dependency>
194                         <groupId>com.vmware</groupId>
195                         <artifactId>vijava</artifactId>
196                         <version>5.1</version>
197                         <scope>compile</scope>
198                 </dependency>
199
200                 <dependency>
201                         <groupId>xerces</groupId>
202                         <artifactId>xerces</artifactId>
203                         <version>2.4.0</version>
204                         <scope>provided</scope>
205                 </dependency>
206
207         </dependencies>
208
209         <build>
210                 <plugins>
211                         <plugin>
212                                 <groupId>org.apache.felix</groupId>
213                                 <artifactId>maven-bundle-plugin</artifactId>
214                                 <extensions>true</extensions>
215                                 <configuration>
216                                         <instructions>
217                                                 <Bundle-SymbolicName>appc-rest-adapter</Bundle-SymbolicName>
218                                                 <Bundle-Activator>org.onap.appc.adapter.rest.RestActivator</Bundle-Activator>
219                                                 <Export-Package>org.onap.appc.adapter.rest</Export-Package>
220                                                 <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.*</Import-Package>
221                                                 <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|jaxp-api</Embed-Dependency>
222                                                 <Embed-Transitive>true</Embed-Transitive>
223                                         </instructions>
224                                 </configuration>
225                         </plugin>
226                 </plugins>
227         </build>
228 </project>