Change parent version
[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.5.0</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
106                 <dependency>
107                         <groupId>com.fasterxml.jackson.core</groupId>
108                         <artifactId>jackson-databind</artifactId>
109                 </dependency>
110                 <dependency>
111                         <groupId>com.fasterxml.jackson.core</groupId>
112                         <artifactId>jackson-core</artifactId>
113                 </dependency>
114                 <dependency>
115                         <groupId>com.fasterxml.jackson.core</groupId>
116                         <artifactId>jackson-annotations</artifactId>
117                 </dependency>
118                 <dependency>
119                         <groupId>commons-logging</groupId>
120                         <artifactId>commons-logging</artifactId>
121                         <version>1.2</version>
122                         <scope>compile</scope>
123                 </dependency>
124
125                 <dependency>
126                         <groupId>junit</groupId>
127                         <artifactId>junit</artifactId>
128                         <scope>test</scope>
129                 </dependency>
130                 <dependency>
131                         <groupId>org.mockito</groupId>
132                         <artifactId>mockito-core</artifactId>
133                         <scope>test</scope>
134                 </dependency>
135         </dependencies>
136
137
138         <build>
139                 <plugins>
140                         <plugin>
141                                 <groupId>org.apache.felix</groupId>
142                                 <artifactId>maven-bundle-plugin</artifactId>
143                                 <extensions>true</extensions>
144                                 <configuration>
145                                         <instructions>
146                                                 <Bundle-SymbolicName>org.onap.appc.listener</Bundle-SymbolicName>
147                                                 <Bundle-Activator>org.onap.appc.listener.AppcEventListenerActivator</Bundle-Activator>
148                                                 <Export-Package>org.onap.appc.listener</Export-Package>
149                                                 <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*
150                                                         org.onap.appc.exceptions, org.onap.appc.util,
151                                                         com.att.eelf.configuration, com.att.eelf.i18n,
152                                                         *;resolution:=optional
153                                                 </Import-Package>
154                                                 <Embed-Dependency>
155                                                         httpclient,httpcore,jasypt,commons-lang,commons-lang3,appc-common-bundle,
156                                                         logback-core,logback-classic,eelf-core,commons-logging;scope=compile|runtime;inline=false
157                                                 </Embed-Dependency>
158                                                 <Embed-Transitive>true</Embed-Transitive>
159                                         </instructions>
160                                 </configuration>
161                         </plugin>
162
163                 </plugins>
164         </build>
165         <version>1.5.0-SNAPSHOT</version>
166 </project>