Increment version for new branch
[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 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <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">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc</groupId>
27                 <artifactId>appc-event-listener</artifactId>
28                 <version>1.4.0-SNAPSHOT</version>
29         </parent>
30
31         <artifactId>appc-event-listener-bundle</artifactId>
32         <packaging>bundle</packaging>
33         <name>Event Listener - bundle</name>
34
35         <dependencies>
36 <!--
37                 <dependency>
38                         <groupId>org.onap.appc</groupId>
39                         <artifactId>appc-rest-bundle</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42 -->
43                 <dependency>
44                         <groupId>com.att.eelf</groupId>
45                         <artifactId>eelf-core</artifactId>
46                         </dependency>
47                 <dependency>
48                         <groupId>org.onap.appc</groupId>
49                         <artifactId>appc-common</artifactId>
50                         <version>${project.version}</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.onap.appc</groupId>
54                         <artifactId>appc-dmaap-adapter-bundle</artifactId>
55                         <version>${project.version}</version>
56             <scope>provided</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.onap.appc</groupId>
60                         <artifactId>appc-message-adapter-api</artifactId>
61                         <version>${project.version}</version>
62             <scope>provided</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.onap.appc</groupId>
66                         <artifactId>appc-message-adapter-factory</artifactId>
67                         <version>${project.version}</version>
68             <scope>provided</scope>
69                 </dependency>
70 <!--
71                 <dependency>
72                         <groupId>org.onap.appc</groupId>
73                         <artifactId>appc-rest-model</artifactId>
74                         <version>${project.version}</version>
75                 </dependency>
76 -->
77
78                 <dependency>
79                         <groupId>org.apache.httpcomponents</groupId>
80                         <artifactId>httpclient</artifactId>
81                         <version>4.5.3</version>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.apache.httpcomponents</groupId>
85                         <artifactId>httpcore</artifactId>
86                         <version>${apache.httpcomponents.version}</version>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>equinoxSDK381</groupId>
91                         <artifactId>org.eclipse.osgi</artifactId>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>com.fasterxml.jackson.core</groupId>
96                         <artifactId>jackson-databind</artifactId>
97                 </dependency>
98                 <dependency>
99                         <groupId>com.fasterxml.jackson.core</groupId>
100                         <artifactId>jackson-core</artifactId>
101                 </dependency>
102                 <dependency>
103                         <groupId>com.fasterxml.jackson.core</groupId>
104                         <artifactId>jackson-annotations</artifactId>
105                 </dependency>
106                 <dependency>
107                         <groupId>commons-logging</groupId>
108                         <artifactId>commons-logging</artifactId>
109                         <version>1.2</version>
110                         <scope>compile</scope>
111                 </dependency>
112
113                 <dependency>
114                         <groupId>junit</groupId>
115                         <artifactId>junit</artifactId>
116                         <scope>test</scope>
117                 </dependency>
118                 <dependency>
119                         <groupId>org.mockito</groupId>
120                         <artifactId>mockito-core</artifactId>
121                 </dependency>
122         </dependencies>
123
124
125         <build>
126                 <plugins>
127                         <plugin>
128                                 <groupId>org.apache.felix</groupId>
129                                 <artifactId>maven-bundle-plugin</artifactId>
130                                 <extensions>true</extensions>
131                                 <configuration>
132                                         <instructions>
133                                                 <Bundle-SymbolicName>org.onap.appc.listener</Bundle-SymbolicName>
134                                                 <Bundle-Activator>org.onap.appc.listener.AppcEventListenerActivator</Bundle-Activator>
135                                                 <Export-Package>org.onap.appc.listener</Export-Package>
136                                                 <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*
137                                                         org.onap.appc.exceptions, org.onap.appc.util,
138                                                         com.att.eelf.configuration, com.att.eelf.i18n,
139                                                         *;resolution:=optional
140                                                 </Import-Package>
141                                                 <Embed-Dependency>
142                                                         httpclient,httpcore,jasypt,commons-lang,commons-lang3,appc-common,
143                                                         logback-core,logback-classic,eelf-core,commons-logging;scope=compile|runtime;inline=false
144                                                 </Embed-Dependency>
145                                                 <Embed-Transitive>true</Embed-Transitive>
146                                         </instructions>
147                                 </configuration>
148                         </plugin>
149
150                 </plugins>
151         </build>
152 </project>