upgrade databind artifact
[appc.git] / appc-dg / appc-dg-shared / appc-dg-netconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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   -->
22 <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">
23         <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.appc.parent</groupId>
26         <artifactId>binding-parent</artifactId>
27         <version>1.5.0-SNAPSHOT</version>
28         <relativePath />
29     </parent>
30     <groupId>org.onap.appc</groupId>
31         <artifactId>appc-dg-netconf</artifactId>
32         <packaging>bundle</packaging>
33
34         <dependencies>
35                 <dependency>
36                         <groupId>org.onap.appc</groupId>
37                         <artifactId>appc-common-bundle</artifactId>
38                         <version>${project.version}</version>
39                         <exclusions>
40                           <exclusion>
41                             <groupId>com.fasterxml.jackson.core</groupId>
42                             <artifactId>jackson-databind</artifactId>
43                           </exclusion>
44                        </exclusions>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.onap.appc</groupId>
48                         <artifactId>appc-netconf-adapter-bundle</artifactId>
49                         <version>${project.version}</version>
50                         <scope>compile</scope>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.onap.appc</groupId>
54                         <artifactId>appc-dg-common</artifactId>
55                         <version>${project.version}</version>
56                         <scope>compile</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.onap.ccsdk.sli.core</groupId>
60                         <artifactId>sli-common</artifactId>
61                         <scope>compile</scope>
62                 </dependency>
63                 <dependency>
64                         <groupId>org.onap.ccsdk.sli.core</groupId>
65                         <artifactId>sli-provider</artifactId>
66                         <scope>compile</scope>
67                 </dependency>
68                 <dependency>
69                         <groupId>junit</groupId>
70                         <artifactId>junit</artifactId>
71                         <scope>test</scope>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>org.mockito</groupId>
76                         <artifactId>mockito-core</artifactId>
77                         <scope>test</scope>
78
79                 </dependency>
80                 <dependency>
81                         <groupId>org.powermock</groupId>
82                         <artifactId>powermock-api-mockito</artifactId>
83                         <scope>test</scope>
84
85                 </dependency>
86                 <dependency>
87                         <groupId>org.powermock</groupId>
88                         <artifactId>powermock-module-junit4</artifactId>
89                         <scope>test</scope>
90                 </dependency>
91
92                 <dependency>
93                         <groupId>org.javassist</groupId>
94                         <artifactId>javassist</artifactId>
95                         <version>3.22.0-GA</version>
96                         <scope>test</scope>
97                 </dependency>
98                <dependency>
99                   <groupId>com.fasterxml.jackson.core</groupId>
100                   <artifactId>jackson-databind</artifactId>
101                   <version>2.8.11.3</version>
102                </dependency>
103
104         </dependencies>
105
106         <build>
107                 <plugins>
108                         <plugin>
109                                 <groupId>org.apache.felix</groupId>
110                                 <artifactId>maven-bundle-plugin</artifactId>
111                                 <extensions>true</extensions>
112                                 <configuration>
113                                         <instructions>
114                                                 <Bundle-SymbolicName>appc-dg-netconf</Bundle-SymbolicName>
115                                                 <Export-Package>org.onap.appc.dg.netconf</Export-Package>
116                                                 <Private-Package>org.onap.appc.dg.netconf.impl.*</Private-Package>
117                                                 <Import-Package>
118                                                         *;resolution:=optional
119                                                 </Import-Package>
120                                                 <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency-->
121                                                 <Embed-Transitive>true</Embed-Transitive>
122                                                 <_removeheaders>Import-Service</_removeheaders>
123                                         </instructions>
124                                 </configuration>
125                         </plugin>
126                 </plugins>
127         </build>
128         <version>1.5.0-SNAPSHOT</version>
129 </project>