upgrade databind artifact
[appc.git] / appc-dg / appc-dg-shared / appc-dg-mdsal-store / appc-dg-mdsal-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28     <parent>
29         <groupId>org.onap.appc.parent</groupId>
30         <artifactId>binding-parent</artifactId>
31         <version>1.5.0-SNAPSHOT</version>
32         <relativePath />
33     </parent>
34     <groupId>org.onap.appc</groupId>
35
36     <artifactId>appc-dg-mdsal-bundle</artifactId>
37     <packaging>bundle</packaging>
38
39     <properties>
40         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
42     </properties>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.felix</groupId>
48                 <artifactId>maven-bundle-plugin</artifactId>
49                 <version>${bundle.plugin.version}</version>
50                 <extensions>true</extensions>
51                 <configuration>
52                     <instructions>
53                         <Export-Package>org.onap.appc.mdsal.*</Export-Package>
54                         <Import-Package>*;resolution:=optional</Import-Package>
55                         <DynamicImport-Package>*</DynamicImport-Package>
56                         <Embed-Transitive>true</Embed-Transitive>
57                     </instructions>
58                 </configuration>
59             </plugin>
60         </plugins>
61     </build>
62
63     <dependencies>
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.mockito</groupId>
71             <artifactId>mockito-core</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.powermock</groupId>
75             <artifactId>powermock-api-mockito</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-module-junit4</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.javassist</groupId>
83             <artifactId>javassist</artifactId>
84             <version>3.22.0-GA</version>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>config-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal-common-util</artifactId>
94         </dependency>
95         <dependency>
96             <artifactId>sal-test-model</artifactId>
97             <groupId>org.opendaylight.controller</groupId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.apache.httpcomponents</groupId>
102             <artifactId>httpcore</artifactId>
103             <version>${apache.httpcomponents.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>org.apache.httpcomponents</groupId>
107             <artifactId>httpclient</artifactId>
108             <version>${apache.httpcomponents.version}</version>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.onap.ccsdk.sli.core</groupId>
113             <artifactId>sli-common</artifactId>
114             <scope>compile</scope>
115             <!-- Added exclusion to prevent missing dependency issue on dblib -->
116             <exclusions>
117                 <exclusion>
118                     <groupId>org.onap.ccsdk.sli.core</groupId>
119                     <artifactId>dblib-provider</artifactId>
120                 </exclusion>
121             </exclusions>
122         </dependency>
123
124         <dependency>
125             <groupId>org.onap.ccsdk.sli.core</groupId>
126             <artifactId>sli-provider</artifactId>
127             <scope>compile</scope>
128             <!-- Added exclusion to prevent missing dependency issue on dblib -->
129             <exclusions>
130                 <exclusion>
131                     <groupId>org.onap.ccsdk.sli.core</groupId>
132                     <artifactId>dblib-provider</artifactId>
133                 </exclusion>
134             </exclusions>
135         </dependency>
136
137         <dependency>
138             <groupId>org.onap.appc</groupId>
139             <artifactId>appc-common-bundle</artifactId>
140             <version>${project.version}</version>
141             <exclusions>
142               <exclusion>
143                 <groupId>com.fasterxml.jackson.core</groupId>
144                 <artifactId>jackson-databind</artifactId>
145               </exclusion>
146            </exclusions>
147         </dependency>
148         <dependency>
149             <groupId>org.onap.appc</groupId>
150             <artifactId>appc-dg-mdsal-model</artifactId>
151             <version>${project.version}</version>
152         </dependency>
153         <dependency>
154             <groupId>commons-io</groupId>
155             <artifactId>commons-io</artifactId>
156         </dependency>
157         <dependency>
158            <groupId>com.fasterxml.jackson.core</groupId>
159            <artifactId>jackson-databind</artifactId>
160            <version>2.8.11.3</version>
161         </dependency>
162     </dependencies>
163     <version>1.5.0-SNAPSHOT</version>
164 </project>