Release appc
[appc.git] / appc-inbound / appc-interfaces-service / bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2019 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"
23     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>2.6.0-SNAPSHOT</version>
29                 <relativePath />
30         </parent>
31         <groupId>org.onap.appc</groupId>
32     <artifactId>appc-interfaces-service-bundle</artifactId>
33     <packaging>bundle</packaging>
34
35     <build>
36         <plugins>
37             <plugin>
38                 <groupId>org.apache.felix</groupId>
39                 <artifactId>maven-bundle-plugin</artifactId>
40                 <extensions>true</extensions>
41                 <configuration>
42                     <instructions>
43                     <Export-Package>org.onap.appc.interfaces.services</Export-Package>
44                          <Import-Package>org.onap.appc.aai.client,org.onap.appc.aai.client.*,*;resolution:=optional</Import-Package>
45                          <Embed-Dependency>jackson-dataformat-yaml</Embed-Dependency>
46                          <DynamicImport-Package>*</DynamicImport-Package>
47                          <Embed-Transitive>true</Embed-Transitive>
48                     </instructions>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53
54     <dependencies>
55         <dependency>
56             <groupId>org.onap.appc</groupId>
57             <artifactId>appc-interfaces-service-model</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60        <dependency>
61             <groupId>org.onap.appc</groupId>
62             <artifactId>appc-aai-client-provider</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
66         <dependency>
67             <groupId>com.google.code.gson</groupId>
68             <artifactId>gson</artifactId>
69             <version>2.8.0</version>
70         </dependency>
71         <dependency>
72                     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
73                    <artifactId>aai-service-provider</artifactId>
74                 <scope>compile</scope>
75             </dependency>
76         <dependency>
77             <groupId>org.apache.commons</groupId>
78             <artifactId>commons-lang3</artifactId>
79         </dependency>
80
81         <dependency>
82             <groupId>junit</groupId>
83             <artifactId>junit</artifactId>
84             <scope>test</scope>
85         </dependency>
86
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>config-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal-common-util</artifactId>
94         </dependency>
95         <dependency>
96             <artifactId>sal-test-model</artifactId>
97             <groupId>org.opendaylight.controller</groupId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>sal-binding-broker-impl</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106          <groupId>ch.qos.logback</groupId>
107          <artifactId>logback-classic</artifactId>
108          <version>${logback.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>com.att.eelf</groupId>
112             <artifactId>eelf-core</artifactId>
113             <exclusions>
114                    <exclusion>
115                         <groupId>ch.qos.logback</groupId>
116                         <artifactId>logback-classic</artifactId>
117                    </exclusion>
118             </exclusions>
119         </dependency>
120         <dependency>
121             <groupId>com.sun.jersey</groupId>
122             <artifactId>jersey-client</artifactId>
123             <version>1.17</version>
124             <scope>provided</scope>
125         </dependency>
126         <dependency>
127             <groupId>com.fasterxml.jackson.dataformat</groupId>
128             <artifactId>jackson-dataformat-yaml</artifactId>
129             <version>2.3.2</version>
130         </dependency>
131         <dependency>
132             <groupId>com.fasterxml.jackson.core</groupId>
133             <artifactId>jackson-databind</artifactId>
134         </dependency>
135         <dependency>
136             <groupId>org.apache.commons</groupId>
137             <artifactId>commons-lang3</artifactId>
138         </dependency>
139         <dependency>
140             <groupId>org.apache.velocity</groupId>
141             <artifactId>velocity</artifactId>
142             <version>1.7</version>
143             <exclusions>
144                  <exclusion>
145                       <artifactId>commons-collections</artifactId>
146                       <groupId>commons-collections</groupId>
147                  </exclusion>
148             </exclusions>
149         </dependency>
150         <dependency>
151             <groupId>commons-collections</groupId>
152             <artifactId>commons-collections</artifactId>
153             <version>3.2.2</version>
154         </dependency>
155         <dependency>
156             <groupId>commons-io</groupId>
157             <artifactId>commons-io</artifactId>
158         </dependency>
159     </dependencies>
160     <version>1.6.0</version>
161 </project>