upgrade databind artifact
[appc.git] / appc-event-listener / appc-event-listener-bundle / 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
32         <artifactId>appc-event-listener-bundle</artifactId>
33         <packaging>bundle</packaging>
34         <name>Event Listener - bundle</name>
35
36         <dependencies>
37 <!--
38                 <dependency>
39                         <groupId>org.onap.appc</groupId>
40                         <artifactId>appc-rest-bundle</artifactId>
41                         <version>${project.version}</version>
42                 </dependency>
43 -->
44                 <dependency>
45                      <groupId>ch.qos.logback</groupId>
46                      <artifactId>logback-classic</artifactId>
47                      <version>${logback.version}</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>com.att.eelf</groupId>
51                         <artifactId>eelf-core</artifactId>
52                        <exclusions>
53                             <exclusion>
54                                  <groupId>ch.qos.logback</groupId>
55                                  <artifactId>logback-classic</artifactId>
56                             </exclusion>
57                         </exclusions>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.onap.appc</groupId>
61                         <artifactId>appc-common-bundle</artifactId>
62                         <version>${project.version}</version>
63                         <exclusions>
64                             <exclusion>
65                               <groupId>com.fasterxml.jackson.core</groupId>
66                               <artifactId>jackson-databind</artifactId>
67                             </exclusion>
68                          </exclusions>
69                  </dependency>
70
71                 <dependency>
72                         <groupId>org.onap.appc</groupId>
73                         <artifactId>appc-dmaap-adapter-bundle</artifactId>
74                         <version>${project.version}</version>
75                         <scope>provided</scope>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.onap.appc</groupId>
79                         <artifactId>appc-message-adapter-api</artifactId>
80                         <version>${project.version}</version>
81                         <scope>provided</scope>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.onap.appc</groupId>
85                         <artifactId>appc-message-adapter-factory</artifactId>
86                         <version>${project.version}</version>
87                         <scope>provided</scope>
88                 </dependency>
89 <!--
90                 <dependency>
91                         <groupId>org.onap.appc</groupId>
92                         <artifactId>appc-rest-model</artifactId>
93                         <version>${project.version}</version>
94                 </dependency>
95 -->
96
97                 <dependency>
98                         <groupId>org.apache.httpcomponents</groupId>
99                         <artifactId>httpclient</artifactId>
100                         <version>4.5.3</version>
101                 </dependency>
102                 <dependency>
103                         <groupId>org.apache.httpcomponents</groupId>
104                         <artifactId>httpcore</artifactId>
105                         <version>${apache.httpcomponents.version}</version>
106                 </dependency>
107
108                 <dependency>
109                         <groupId>equinoxSDK381</groupId>
110                         <artifactId>org.eclipse.osgi</artifactId>
111                 </dependency>
112
113                 <dependency>
114                         <groupId>com.fasterxml.jackson.core</groupId>
115                         <artifactId>jackson-databind</artifactId>
116                         <version>2.8.11.3</version>
117                 </dependency>
118
119                 <dependency>
120                         <groupId>com.fasterxml.jackson.core</groupId>
121                         <artifactId>jackson-core</artifactId>
122                 </dependency>
123                 <dependency>
124                         <groupId>com.fasterxml.jackson.core</groupId>
125                         <artifactId>jackson-annotations</artifactId>
126                 </dependency>
127                 <dependency>
128                         <groupId>commons-logging</groupId>
129                         <artifactId>commons-logging</artifactId>
130                         <version>1.2</version>
131                         <scope>compile</scope>
132                 </dependency>
133
134                 <dependency>
135                         <groupId>junit</groupId>
136                         <artifactId>junit</artifactId>
137                         <scope>test</scope>
138                 </dependency>
139                 <dependency>
140                         <groupId>org.mockito</groupId>
141                         <artifactId>mockito-core</artifactId>
142                         <scope>test</scope>
143                 </dependency>
144         </dependencies>
145
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>org.onap.appc.listener</Bundle-SymbolicName>
156                                                 <Bundle-Activator>org.onap.appc.listener.AppcEventListenerActivator</Bundle-Activator>
157                                                 <Export-Package>org.onap.appc.listener</Export-Package>
158                                                 <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*
159                                                         org.onap.appc.exceptions, org.onap.appc.util,
160                                                         com.att.eelf.configuration, com.att.eelf.i18n,
161                                                         *;resolution:=optional
162                                                 </Import-Package>
163                                                 <Embed-Dependency>
164                                                         httpclient,httpcore,jasypt,commons-lang,commons-lang3,appc-common-bundle,
165                                                         logback-core,logback-classic,eelf-core,commons-logging;scope=compile|runtime;inline=false
166                                                 </Embed-Dependency>
167                                                 <Embed-Transitive>true</Embed-Transitive>
168                                         </instructions>
169                                 </configuration>
170                         </plugin>
171
172                 </plugins>
173         </build>
174         <version>1.5.0-SNAPSHOT</version>
175 </project>