First part of onap rename
[appc.git] / appc-sdc-listener / appc-sdc-listener-bundle / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
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
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 ============LICENSE_END=========================================================
23 -->
24 <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">
25         <modelVersion>4.0.0</modelVersion>
26
27
28         <parent>
29                 <artifactId>appc-sdc-listener</artifactId>
30                 <groupId>org.onap.appc</groupId>
31                 <version>1.3.0-SNAPSHOT</version>
32         </parent>
33
34         <properties>
35                 <jackson-yaml-version>2.8.1</jackson-yaml-version>
36                 <snakeyaml.version>1.15</snakeyaml.version>
37         </properties>
38
39         <artifactId>appc-sdc-listener-bundle</artifactId>
40         <packaging>bundle</packaging>
41
42         <dependencies>
43
44                 <dependency>
45                         <groupId>equinoxSDK381</groupId>
46                         <artifactId>org.eclipse.osgi</artifactId>
47                 </dependency>
48
49                 <dependency>
50                         <groupId>org.json</groupId>
51                         <artifactId>json</artifactId>
52                         <scope>compile</scope>
53                 </dependency>
54
55                 <dependency>
56                         <groupId>org.mockito</groupId>
57                         <artifactId>mockito-core</artifactId>
58                         <scope>test</scope>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.powermock</groupId>
62                         <artifactId>powermock-module-junit4</artifactId>
63                         <version>1.6.2</version>
64                         <scope>test</scope>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.powermock</groupId>
68                         <artifactId>powermock-api-mockito</artifactId>
69                         <scope>test</scope>
70                 </dependency>
71
72                 <dependency>
73                         <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
74                         <artifactId>sdc-distribution-client</artifactId>
75                         <version>${sdc-client.version}</version>
76                 </dependency>
77
78                 <dependency>
79                         <groupId>org.onap.appc</groupId>
80                         <artifactId>appc-message-adapter-api</artifactId>
81                         <version>${project.version}</version>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.onap.appc</groupId>
86                         <artifactId>appc-message-adapter-factory</artifactId>
87                         <version>${project.version}</version>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>org.yaml</groupId>
92                         <artifactId>snakeyaml</artifactId>
93                         <version>${snakeyaml.version}</version>
94                 </dependency>
95
96                 <dependency>
97                         <groupId>org.onap.appc</groupId>
98                         <artifactId>appc-common</artifactId>
99                         <version>${project.version}</version>
100                 </dependency>
101
102
103                 <dependency>
104                         <groupId>junit</groupId>
105                         <artifactId>junit</artifactId>
106                         <scope>compile</scope>
107                 </dependency>
108
109                 <dependency>
110                         <groupId>com.att.eelf</groupId>
111                         <artifactId>eelf-core</artifactId>
112                 </dependency>
113                 <dependency>
114                         <groupId>ch.qos.logback</groupId>
115                         <artifactId>logback-core</artifactId>
116                 </dependency>
117                 <dependency>
118                         <groupId>ch.qos.logback</groupId>
119                         <artifactId>logback-classic</artifactId>
120                 </dependency>
121                 <dependency>
122                         <groupId>org.functionaljava</groupId>
123                         <artifactId>functionaljava</artifactId>
124                         <version>4.2</version>
125                 </dependency>
126                 <dependency>
127                         <groupId>org.apache.httpcomponents</groupId>
128                         <artifactId>httpcore</artifactId>
129                         <version>4.4.1</version>
130                 </dependency>
131                 <dependency>
132                         <groupId>org.apache.httpcomponents</groupId>
133                         <artifactId>httpclient</artifactId>
134                         <version>4.4.1</version>
135                 </dependency>
136
137                 <dependency>
138                         <groupId>org.onap.appc</groupId>
139                         <artifactId>appc-license-manager-api</artifactId>
140                         <!-- <version>${project.version}</version> -->
141                         <version>${project.version}</version>
142                 </dependency>
143
144                 <dependency>
145                         <groupId>com.google.code.gson</groupId>
146                         <artifactId>gson</artifactId>
147                 </dependency>
148
149                 <dependency>
150                         <groupId>org.apache.velocity</groupId>
151                         <artifactId>velocity</artifactId>
152                         <version>1.7</version>
153                 </dependency>
154
155                 <dependency>
156                         <groupId>org.opendaylight.yangtools</groupId>
157                         <artifactId>yang-parser-impl</artifactId>
158                         <version>${odl.yangtools.version}</version>
159                 </dependency>
160
161                 <dependency>
162                         <groupId>org.opendaylight.mdsal.model</groupId>
163                         <artifactId>ietf-inet-types</artifactId>
164                         <version>${odl.ietf-inet-types.version}</version>
165                 </dependency>
166                 <dependency>
167                         <groupId>org.opendaylight.mdsal.model</groupId>
168                         <artifactId>ietf-yang-types</artifactId>
169                         <version>${odl.ietf-yang-types.version}</version>
170                 </dependency>
171
172                 <dependency>
173                         <groupId>org.onap.appc</groupId>
174                         <artifactId>appc-dg-dependency-model</artifactId>
175                         <version>${project.version}</version>
176                 </dependency>
177                 <dependency>
178                         <groupId>com.fasterxml.jackson.dataformat</groupId>
179                         <artifactId>jackson-dataformat-yaml</artifactId>
180                         <version>${jackson-yaml-version}</version>
181                 </dependency>
182                 <dependency>
183                         <groupId>org.onap.appc</groupId>
184                         <artifactId>appc-dg-domain-model-lib</artifactId>
185                         <version>${project.version}</version>
186                 </dependency>
187                 <dependency>
188                         <groupId>com.fasterxml.jackson.core</groupId>
189                         <artifactId>jackson-annotations</artifactId>
190                         <version>${jackson-yaml-version}</version>
191                 </dependency>
192                 <dependency>
193                         <groupId>com.fasterxml.jackson.core</groupId>
194                         <artifactId>jackson-databind</artifactId>
195                         <version>${jackson-yaml-version}</version>
196                 </dependency>
197                 <dependency>
198                         <groupId>com.fasterxml.jackson.core</groupId>
199                         <artifactId>jackson-core</artifactId>
200                         <version>${jackson-yaml-version}</version>
201                 </dependency>
202
203                 <dependency>
204                         <groupId>org.mockito</groupId>
205                         <artifactId>mockito-core</artifactId>
206                 </dependency>
207
208
209
210         </dependencies>
211
212
213         <build>
214                 <plugins>
215
216                         <!-- ================================================== -->
217                         <!-- Set the JDK compiler version. -->
218                         <!-- ================================================== -->
219                         <plugin>
220                                 <groupId>org.apache.maven.plugins</groupId>
221                                 <artifactId>maven-compiler-plugin</artifactId>
222                                 <!-- <inherited>true</inherited> -->
223                                 <configuration>
224                                         <source>1.8</source>
225                                         <target>1.8</target>
226                                 </configuration>
227                         </plugin>
228
229                         <plugin>
230                                 <groupId>org.apache.felix</groupId>
231                                 <artifactId>maven-bundle-plugin</artifactId>
232                                 <extensions>true</extensions>
233                                 <configuration>
234                                         <instructions>
235                                                 <Bundle-SymbolicName>org.onap.appc.sdc.listener</Bundle-SymbolicName>
236                                                 <!--Bundle-Activator>org.onap.appc.sdc.listener.AppcSdcListenerActivator</Bundle-Activator -->
237                                                 <Export-Package>org.onap.appc.sdc.listener</Export-Package>
238                                                 <Import-Package>
239                                                         org.onap.appc.licmgr,
240                                                         org.onap.appc.adapter.messaging.*,
241                                                         com.att.eelf.*,
242                                                         *;resolution:=optional
243                                                 </Import-Package>
244                                                 <Embed-Dependency>
245                                                         sdc-distribution-client,snakeyaml,
246                                                         saClientLibrary,cambriaClient,saToolkit,
247                                                         functionaljava,httpcore,httpclient,gson,appc-dg-dependency-model,appc-dg-domain-model-lib,
248                                                         jackson-core,jackson-databind,jackson-annotations,jackson-dataformat-yaml;
249                                                         scope=compile|runtime;inline=false
250                                                 </Embed-Dependency>
251                                                 <Embed-Transitive>true</Embed-Transitive>
252                                         </instructions>
253                                 </configuration>
254                         </plugin>
255                 </plugins>
256         </build>
257 </project>