Release appc
[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>2.6.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                 </dependency>
64                 <dependency>
65                         <groupId>org.onap.appc</groupId>
66                         <artifactId>appc-dmaap-adapter-bundle</artifactId>
67                         <version>${project.version}</version>
68             <scope>provided</scope>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.onap.appc</groupId>
72                         <artifactId>appc-message-adapter-api</artifactId>
73                         <version>${project.version}</version>
74             <scope>provided</scope>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.onap.appc</groupId>
78                         <artifactId>appc-message-adapter-factory</artifactId>
79                         <version>${project.version}</version>
80             <scope>provided</scope>
81                 </dependency>
82 <!--
83                 <dependency>
84                         <groupId>org.onap.appc</groupId>
85                         <artifactId>appc-rest-model</artifactId>
86                         <version>${project.version}</version>
87                 </dependency>
88 -->
89
90                 <dependency>
91                         <groupId>org.apache.httpcomponents</groupId>
92                         <artifactId>httpclient</artifactId>
93                         <version>4.5.3</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.apache.httpcomponents</groupId>
97                         <artifactId>httpcore</artifactId>
98                         <version>${apache.httpcomponents.version}</version>
99                 </dependency>
100
101                 <dependency>
102                         <groupId>equinoxSDK381</groupId>
103                         <artifactId>org.eclipse.osgi</artifactId>
104                 </dependency>
105                 <dependency>
106                   <groupId>commons-codec</groupId>
107                   <artifactId>commons-codec</artifactId>
108                 </dependency>
109                 <dependency>
110                         <groupId>com.fasterxml.jackson.core</groupId>
111                         <artifactId>jackson-databind</artifactId>
112                 </dependency>
113                 <dependency>
114                         <groupId>com.fasterxml.jackson.core</groupId>
115                         <artifactId>jackson-core</artifactId>
116                 </dependency>
117                 <dependency>
118                         <groupId>com.fasterxml.jackson.core</groupId>
119                         <artifactId>jackson-annotations</artifactId>
120                 </dependency>
121                 <dependency>
122                         <groupId>commons-logging</groupId>
123                         <artifactId>commons-logging</artifactId>
124                         <version>1.2</version>
125                         <scope>compile</scope>
126                 </dependency>
127
128                 <dependency>
129                         <groupId>junit</groupId>
130                         <artifactId>junit</artifactId>
131                         <scope>test</scope>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.mockito</groupId>
135                         <artifactId>mockito-core</artifactId>
136                         <scope>test</scope>
137                 </dependency>
138         </dependencies>
139
140
141         <build>
142                 <plugins>
143                         <plugin>
144                                 <groupId>org.apache.felix</groupId>
145                                 <artifactId>maven-bundle-plugin</artifactId>
146                                 <extensions>true</extensions>
147                                 <configuration>
148                                         <instructions>
149                                                 <Bundle-SymbolicName>org.onap.appc.listener</Bundle-SymbolicName>
150                                                 <Bundle-Activator>org.onap.appc.listener.AppcEventListenerActivator</Bundle-Activator>
151                                                 <Export-Package>org.onap.appc.listener</Export-Package>
152                                                 <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*
153                                                         org.onap.appc.exceptions, org.onap.appc.util,
154                                                         com.att.eelf.configuration, com.att.eelf.i18n,
155                                                         *;resolution:=optional
156                                                 </Import-Package>
157                                                 <Embed-Dependency>
158                                                         httpclient,httpcore,jasypt,commons-lang,commons-lang3,commons-codec,appc-common-bundle,
159                                                         logback-core,logback-classic,eelf-core,commons-logging;scope=compile|runtime;inline=false
160                                                 </Embed-Dependency>
161                                                 <Embed-Transitive>true</Embed-Transitive>
162                                         </instructions>
163                                 </configuration>
164                         </plugin>
165
166                 </plugins>
167         </build>
168         <version>1.6.0</version>
169 </project>