upgrade databind artifact
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-message-adapter-factory / 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
31         <groupId>org.onap.appc</groupId>
32         <artifactId>appc-message-adapter-factory</artifactId>
33         <packaging>bundle</packaging>
34         <name>appc-message-adapter-factory</name>
35
36         <dependencies>
37                 <dependency>
38                         <groupId>org.onap.appc</groupId>
39                         <artifactId>appc-common-bundle</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>org.onap.appc</groupId>
45                         <artifactId>appc-dmaap-adapter-bundle</artifactId>
46                         <version>${project.version}</version>
47             <scope>provided</scope>
48         </dependency>
49
50         <dependency>
51             <groupId>org.onap.appc</groupId>
52             <artifactId>appc-message-adapter-api</artifactId>
53             <version>${project.version}</version>
54             <scope>provided</scope>
55                 </dependency>
56                 
57                 <dependency>
58                         <groupId>junit</groupId>
59                         <artifactId>junit</artifactId>
60                         <scope>test</scope>
61                 </dependency>
62
63                 <dependency>
64                         <groupId>equinoxSDK381</groupId>
65                         <artifactId>org.eclipse.osgi</artifactId>
66                         <version>${equinox.osgi.version}</version>
67                 </dependency>
68
69                 <dependency>
70                         <groupId>commons-codec</groupId>
71                         <artifactId>commons-codec</artifactId>
72                         </dependency>
73
74                 <dependency>
75                         <groupId>commons-lang</groupId>
76                         <artifactId>commons-lang</artifactId>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>com.fasterxml.jackson.core</groupId>
81                         <artifactId>jackson-databind</artifactId>
82                         <version>2.8.11.3</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>com.fasterxml.jackson.core</groupId>
86                         <artifactId>jackson-core</artifactId>
87                 </dependency>
88                 <dependency>
89                         <groupId>com.fasterxml.jackson.core</groupId>
90                         <artifactId>jackson-annotations</artifactId>
91                 </dependency>
92
93                 <dependency>
94                         <groupId>org.mockito</groupId>
95                         <artifactId>mockito-core</artifactId>
96                         <scope>test</scope>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.powermock</groupId>
100                         <artifactId>powermock-api-mockito</artifactId>
101                         <scope>test</scope>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.hamcrest</groupId>
105                         <artifactId>hamcrest-core</artifactId>
106                 </dependency>
107                 <dependency>
108                         <groupId>org.objenesis</groupId>
109                         <artifactId>objenesis</artifactId>
110                         <version>2.2</version>
111                 </dependency>
112
113                 <dependency>
114                         <groupId>org.powermock</groupId>
115                         <artifactId>powermock-module-junit4</artifactId>
116                         <scope>test</scope>
117                 </dependency>
118
119                 <dependency>
120                         <groupId>org.onap.ccsdk.sli.core</groupId>
121                         <artifactId>sli-common</artifactId>
122                         <scope>compile</scope>
123                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
124                         <exclusions>
125                                 <exclusion>
126                                         <groupId>org.onap.ccsdk.sli.core</groupId>
127                                         <artifactId>dblib-provider</artifactId>
128                                 </exclusion>
129                         </exclusions>
130                 </dependency>
131
132                 <dependency>
133                         <groupId>org.onap.ccsdk.sli.core</groupId>
134                         <artifactId>sli-provider</artifactId>
135                         <scope>compile</scope>
136                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
137                         <exclusions>
138                                 <exclusion>
139                                         <groupId>org.onap.ccsdk.sli.core</groupId>
140                                         <artifactId>dblib-provider</artifactId>
141                                 </exclusion>
142                         </exclusions>
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>${project.artifactId}</Bundle-SymbolicName>
156                                                 <Bundle-Version>${project.version}</Bundle-Version>
157                                                 <Export-Package>org.onap.appc.adapter.factory</Export-Package>
158                                                 <Bundle-Activator>org.onap.appc.adapter.factory.DmaapMessageAdapterFactoryActivator</Bundle-Activator>
159                                                 <Export-Service>org.onap.appc.adapter.message.MessageAdapterFactory</Export-Service>
160                                                 <Import-Package>org.onap.appc.adapter.messaging.*,org.onap.appc.adapter.message.*,org.onap.appc.metricservice.*,com.att.nsa.*org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,!org.osgi.service.event.*,org.osgi.service.*,org.osgi.util.*,com.vmware.*,org.apache.xerces.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.*,javax.naming.*,javax.crypto.*, com.sun.jersey.spi.container.servlet,org.eclipse.jetty.servlets</Import-Package>
161                                                 <Embed-Dependency>*;scope=compile|runtime;artifactId=!appc-metric-bundle|sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|pax-*</Embed-Dependency>
162                                                 <Embed-Transitive>true</Embed-Transitive>
163                                                 <Bundle-Blueprint>OSGI-INF/blueprint/blueprint.xml</Bundle-Blueprint>
164                                         </instructions>
165                                 </configuration>
166                         </plugin>
167                 </plugins>
168         </build>
169         <version>1.5.0-SNAPSHOT</version>
170 </project>