54f5563a772be34a7790126f5d02e00cac15c968
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / 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.5.0-SNAPSHOT</version>
28         <relativePath />
29     </parent>
30     <groupId>org.onap.appc</groupId>
31         <artifactId>appc-dg-common</artifactId>
32         <packaging>bundle</packaging>
33
34         <dependencies>
35                 <dependency>
36                         <groupId>org.onap.appc</groupId>
37                         <artifactId>appc-common-bundle</artifactId>
38                         <version>${project.version}</version>
39                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
40                         <exclusions>
41                                 <exclusion>
42                                         <groupId>equinoxSDK381</groupId>
43                                         <artifactId>org.eclipse.osgi</artifactId>
44                                 </exclusion>
45                                 <exclusion>
46                                         <groupId>com.fasterxml.jackson.core</groupId>
47                                         <artifactId>jackson-databind</artifactId>
48                                 </exclusion>
49                         </exclusions>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.onap.appc</groupId>
53                         <artifactId>appc-message-adapter-api</artifactId>
54                         <version>${project.version}</version>
55                         <scope>provided</scope>
56                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
57                         <exclusions>
58                                 <exclusion>
59                                         <groupId>equinoxSDK381</groupId>
60                                         <artifactId>org.eclipse.osgi</artifactId>
61                                 </exclusion>
62                         </exclusions>
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                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
70                         <exclusions>
71                                 <exclusion>
72                                         <groupId>equinoxSDK381</groupId>
73                                         <artifactId>org.eclipse.osgi</artifactId>
74                                 </exclusion>
75                         </exclusions>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.onap.appc</groupId>
79                         <artifactId>appc-message-adapter-factory</artifactId>
80                         <version>${project.version}</version>
81                         <scope>provided</scope>
82                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
83                         <exclusions>
84                                 <exclusion>
85                                         <groupId>equinoxSDK381</groupId>
86                                         <artifactId>org.eclipse.osgi</artifactId>
87                                 </exclusion>
88                         </exclusions>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.onap.ccsdk.sli.core</groupId>
92                         <artifactId>sli-common</artifactId>
93                         <scope>provided</scope>
94                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
95                         <exclusions>
96                                 <exclusion>
97                                         <groupId>equinoxSDK381</groupId>
98                                         <artifactId>org.eclipse.osgi</artifactId>
99                                 </exclusion>
100                         </exclusions>
101                 </dependency>
102                 <dependency>
103                         <groupId>org.onap.ccsdk.sli.core</groupId>
104                         <artifactId>sli-provider</artifactId>
105                         <scope>provided</scope>
106                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
107                         <exclusions>
108                                 <exclusion>
109                                         <groupId>equinoxSDK381</groupId>
110                                         <artifactId>org.eclipse.osgi</artifactId>
111                                 </exclusion>
112                         </exclusions>
113                 </dependency>
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                         <scope>test</scope>
123                 </dependency>
124                 <dependency>
125                         <groupId>org.powermock</groupId>
126                         <artifactId>powermock-api-mockito</artifactId>
127                         <scope>test</scope>
128                 </dependency>
129                 <dependency>
130                         <groupId>org.powermock</groupId>
131                         <artifactId>powermock-module-junit4</artifactId>
132                         <scope>test</scope>
133                 </dependency>
134                 <dependency>
135                         <groupId>org.powermock</groupId>
136                         <artifactId>powermock-api-easymock</artifactId>
137                         <version>1.6.2</version>
138                 </dependency>
139                 <dependency>
140                         <groupId>org.onap.appc</groupId>
141                         <artifactId>appc-dg-dependency-model</artifactId>
142                         <version>${project.version}</version>
143                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
144                         <exclusions>
145                                 <exclusion>
146                                         <groupId>equinoxSDK381</groupId>
147                                         <artifactId>org.eclipse.osgi</artifactId>
148                                 </exclusion>
149                         </exclusions>
150                 </dependency>
151                 <dependency>
152                         <groupId>org.onap.appc</groupId>
153                         <artifactId>appc-ranking-framework-lib</artifactId>
154                         <version>${project.version}</version>
155                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
156                         <exclusions>
157                                 <exclusion>
158                                         <groupId>equinoxSDK381</groupId>
159                                         <artifactId>org.eclipse.osgi</artifactId>
160                                 </exclusion>
161                         </exclusions>
162                 </dependency>
163                 <dependency>
164                         <groupId>org.onap.appc</groupId>
165                         <artifactId>appc-data-access-lib</artifactId>
166                         <version>${project.version}</version>
167                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
168                         <exclusions>
169                                 <exclusion>
170                                         <groupId>equinoxSDK381</groupId>
171                                         <artifactId>org.eclipse.osgi</artifactId>
172                                 </exclusion>
173                         </exclusions>
174                 </dependency>
175                 <!-- TODO: WA for fixing build, clueanup dependency tree -->
176                 <!--<dependency>
177                         <groupId>equinoxSDK381</groupId>
178                         <artifactId>org.eclipse.osgi</artifactId>
179                         <scope>test</scope>
180                 </dependency>-->
181                 <dependency>
182                         <groupId>org.onap.appc</groupId>
183                         <artifactId>appc-dg-mdsal-bundle</artifactId>
184                         <version>${project.version}</version>
185                         <!-- TODO: WA for fixing build, clueanup dependency tree -->
186                         <exclusions>
187                                 <exclusion>
188                                         <groupId>equinoxSDK381</groupId>
189                                         <artifactId>org.eclipse.osgi</artifactId>
190                                 </exclusion>
191                         </exclusions>
192                 </dependency>
193         <dependency>
194             <groupId>com.fasterxml.jackson.dataformat</groupId>
195             <artifactId>jackson-dataformat-yaml</artifactId>
196         </dependency>
197         <dependency>
198             <groupId>com.fasterxml.jackson.core</groupId>
199             <artifactId>jackson-annotations</artifactId>
200         </dependency>
201         <dependency>
202             <groupId>com.fasterxml.jackson.core</groupId>
203             <artifactId>jackson-databind</artifactId>
204             <version>2.8.11.3</version>
205         </dependency>
206         <dependency>
207             <groupId>com.fasterxml.jackson.core</groupId>
208             <artifactId>jackson-core</artifactId>
209         </dependency>
210         <dependency>
211             <groupId>org.yaml</groupId>
212             <artifactId>snakeyaml</artifactId>
213         </dependency>
214         <dependency>
215             <groupId>commons-lang</groupId>
216             <artifactId>commons-lang</artifactId>
217             <scope>compile</scope>
218         </dependency>
219         </dependencies>
220
221         <build>
222                 <plugins>
223                         <plugin>
224                                 <groupId>org.apache.felix</groupId>
225                                 <artifactId>maven-bundle-plugin</artifactId>
226                                 <extensions>true</extensions>
227                                 <configuration>
228                                         <instructions>
229                                                 <Bundle-SymbolicName>appc-dg-common</Bundle-SymbolicName>
230                                                 <Export-Package>org.onap.appc.dg.common,org.onap.appc.dg.common.objects,org.onap.appc.dg.common.utils</Export-Package>
231                                                 <Private-Package>org.onap.appc.dg.common.impl.*</Private-Package>
232                                                 <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*,
233                                                         *;resolution:=optional</Import-Package>
234                                                 <Embed-Dependency>appc-dg-mdsal-bundle,appc-dg-domain-model-lib,appc-dg-dependency-model,jackson-dataformat-yaml,jackson-databind,jackson-core,jackson-annotations;scope=compile|runtime;inline=false;artifactId=!org.eclipse.osgi</Embed-Dependency>
235
236                                                 <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency-->
237                                                 <Embed-Transitive>true</Embed-Transitive>
238                                                 <_removeheaders>Import-Service</_removeheaders>
239                                         </instructions>
240                                 </configuration>
241                         </plugin>
242                 </plugins>
243         </build>
244         <version>1.5.0-SNAPSHOT</version>
245 </project>