blob: 5df2e4a70b5792f97b2bfd1d13befdcaf3c39673 [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 Brady7f383f92018-07-30 14:35:31 -070025 <groupId>org.onap.appc.parent</groupId>
26 <artifactId>binding-parent</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070027 <version>1.4.0</version>
Patrick Brady7f383f92018-07-30 14:35:31 -070028 <relativePath />
Patrick Bradyc7d00752017-06-01 10:45:37 -070029 </parent>
30
Patrick Brady7f383f92018-07-30 14:35:31 -070031 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070032 <artifactId>appc-message-adapter-api</artifactId>
33 <packaging>bundle</packaging>
34 <name>appc-message-adapter-api</name>
35
36 <dependencies>
37 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080038 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070039 <artifactId>appc-metric-bundle</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080043 <groupId>org.onap.appc</groupId>
Patrick Brady46f865c2018-08-13 10:00:29 -070044 <artifactId>appc-common-bundle</artifactId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070045 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
51 <scope>test</scope>
52 </dependency>
53
54 <dependency>
55 <groupId>equinoxSDK381</groupId>
56 <artifactId>org.eclipse.osgi</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -070057 <version>${equinox.osgi.version}</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -070058 </dependency>
59
60 <dependency>
61 <groupId>commons-codec</groupId>
62 <artifactId>commons-codec</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>commons-lang</groupId>
67 <artifactId>commons-lang</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-databind</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-core</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-annotations</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.mockito</groupId>
85 <artifactId>mockito-core</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.powermock</groupId>
90 <artifactId>powermock-api-mockito</artifactId>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.hamcrest</groupId>
95 <artifactId>hamcrest-core</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.objenesis</groupId>
99 <artifactId>objenesis</artifactId>
100 <version>2.2</version>
101 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700102
103 <dependency>
104 <groupId>org.powermock</groupId>
105 <artifactId>powermock-module-junit4</artifactId>
106 <scope>test</scope>
107 </dependency>
108
109 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700110 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700111 <artifactId>sli-common</artifactId>
112 <scope>compile</scope>
113 <!-- Added exclusion to prevent missing dependency issue on dblib -->
114 <exclusions>
115 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700116 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700117 <artifactId>dblib-provider</artifactId>
118 </exclusion>
119 </exclusions>
120 </dependency>
121
122 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700123 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700124 <artifactId>sli-provider</artifactId>
125 <scope>compile</scope>
126 <!-- Added exclusion to prevent missing dependency issue on dblib -->
127 <exclusions>
128 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700129 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700130 <artifactId>dblib-provider</artifactId>
131 </exclusion>
132 </exclusions>
133 </dependency>
134
135 </dependencies>
136
137 <build>
138 <plugins>
139 <plugin>
140 <groupId>org.apache.felix</groupId>
141 <artifactId>maven-bundle-plugin</artifactId>
142 <extensions>true</extensions>
143 <configuration>
144 <instructions>
145 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
146 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady07567592017-12-13 11:09:30 -0800147 <Export-Package>org.onap.appc.adapter.message.*</Export-Package>
148 <!--<Export-Serice>org.onap.appc.adapter.message.EventSender</Export-Serice>-->
149 <Import-Package>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>
Ryan Young7b632b42018-08-23 13:35:03 -0400150 <!--<Embed-Dependency>appc-common-bundle</Embed-Dependency>-->
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700151 <Embed-Dependency>*;scope=compile|runtime;artifactId=!appc-metric-bundle|sli-common|sli-provider|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|pax-*</Embed-Dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700152 <Embed-Transitive>true</Embed-Transitive>
153 <Bundle-Blueprint>OSGI-INF/blueprint/blueprint.xml</Bundle-Blueprint>
154 </instructions>
155 </configuration>
156 </plugin>
157 </plugins>
158 </build>
Patrick Bradyccd67e92018-11-12 12:14:11 -0800159 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700160</project>