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