blob: 0b8e4e782d6fbcc00edeed529467f562aa7391dd [file] [log] [blame]
Patrick Bradyc7d00752017-06-01 10:45:37 -07001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungf6332bd2018-06-13 13:07:38 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 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=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Patrick Bradyc7d00752017-06-01 10:45:37 -070022<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>
Patrick Brady07567592017-12-13 11:09:30 -080025 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070026 <artifactId>appc-dmaap-adapter</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -070028 </parent>
29
30 <artifactId>appc-message-adapter-factory</artifactId>
31 <packaging>bundle</packaging>
32 <name>appc-message-adapter-factory</name>
33
34 <dependencies>
35 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080036 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070037 <artifactId>appc-common</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40
41 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080042 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070043 <artifactId>appc-dmaap-adapter-bundle</artifactId>
44 <version>${project.version}</version>
45 <scope>provided</scope>
46 </dependency>
47
48 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080049 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070050 <artifactId>appc-message-adapter-api</artifactId>
51 <version>${project.version}</version>
52 <scope>provided</scope>
53 </dependency>
54
55 <dependency>
56 <groupId>junit</groupId>
57 <artifactId>junit</artifactId>
58 <scope>test</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>equinoxSDK381</groupId>
63 <artifactId>org.eclipse.osgi</artifactId>
64 </dependency>
65
66 <dependency>
67 <groupId>commons-codec</groupId>
68 <artifactId>commons-codec</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>commons-lang</groupId>
73 <artifactId>commons-lang</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>com.fasterxml.jackson.core</groupId>
78 <artifactId>jackson-databind</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-core</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>com.fasterxml.jackson.core</groupId>
86 <artifactId>jackson-annotations</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>org.mockito</groupId>
91 <artifactId>mockito-core</artifactId>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.powermock</groupId>
96 <artifactId>powermock-api-mockito</artifactId>
97 <scope>test</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.hamcrest</groupId>
101 <artifactId>hamcrest-core</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>org.objenesis</groupId>
105 <artifactId>objenesis</artifactId>
106 <version>2.2</version>
107 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700108
109 <dependency>
110 <groupId>org.powermock</groupId>
111 <artifactId>powermock-module-junit4</artifactId>
112 <scope>test</scope>
113 </dependency>
114
115 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700116 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700117 <artifactId>sli-common</artifactId>
118 <scope>compile</scope>
119 <!-- Added exclusion to prevent missing dependency issue on dblib -->
120 <exclusions>
121 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700122 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700123 <artifactId>dblib-provider</artifactId>
124 </exclusion>
125 </exclusions>
126 </dependency>
127
128 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700129 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700130 <artifactId>sli-provider</artifactId>
131 <scope>compile</scope>
132 <!-- Added exclusion to prevent missing dependency issue on dblib -->
133 <exclusions>
134 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700135 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700136 <artifactId>dblib-provider</artifactId>
137 </exclusion>
138 </exclusions>
139 </dependency>
140
141 </dependencies>
142
143 <build>
144 <plugins>
145 <plugin>
146 <groupId>org.apache.felix</groupId>
147 <artifactId>maven-bundle-plugin</artifactId>
148 <extensions>true</extensions>
149 <configuration>
150 <instructions>
151 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
152 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady07567592017-12-13 11:09:30 -0800153 <Export-Package>org.onap.appc.adapter.factory</Export-Package>
154 <Bundle-Activator>org.onap.appc.adapter.factory.DmaapMessageAdapterFactoryActivator</Bundle-Activator>
155 <Export-Service>org.onap.appc.adapter.message.MessageAdapterFactory</Export-Service>
156 <Import-Package>org.onap.appc.adapter.messaging.*,org.onap.appc.adapter.message.*,org.onap.appc.metricservice.*,com.att.nsa.*org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,!org.osgi.service.event.*,org.osgi.service.*,org.osgi.util.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.*,javax.naming.*,javax.crypto.*, com.sun.jersey.spi.container.servlet,org.eclipse.jetty.servlets</Import-Package>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700157 <Embed-Dependency>*;scope=compile|runtime;artifactId=!appc-metric-bundle|sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|pax-*</Embed-Dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700158 <Embed-Transitive>true</Embed-Transitive>
159 <Bundle-Blueprint>OSGI-INF/blueprint/blueprint.xml</Bundle-Blueprint>
160 </instructions>
161 </configuration>
162 </plugin>
163 </plugins>
164 </build>
165</project>