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