Karaf 4 for appc-inbound
[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-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"
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>1.4.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,*;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-binding-config</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>sal-binding-api</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-common-util</artifactId>
102         </dependency>
103         <dependency>
104             <artifactId>sal-test-model</artifactId>
105             <groupId>org.opendaylight.controller</groupId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>sal-binding-broker-impl</artifactId>
111             <scope>test</scope>
112         </dependency>
113
114         <dependency>
115             <groupId>com.att.eelf</groupId>
116             <artifactId>eelf-core</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>com.sun.jersey</groupId>
120             <artifactId>jersey-client</artifactId>
121             <version>1.17</version>
122             <scope>provided</scope>
123         </dependency>
124         <dependency>
125             <groupId>com.fasterxml.jackson.dataformat</groupId>
126             <artifactId>jackson-dataformat-yaml</artifactId>
127             <version>2.3.2</version>
128         </dependency>
129         <dependency>
130             <groupId>com.fasterxml.jackson.core</groupId>
131             <artifactId>jackson-databind</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.apache.commons</groupId>
135             <artifactId>commons-lang3</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.apache.velocity</groupId>
139             <artifactId>velocity</artifactId>
140             <version>1.7</version>
141             <exclusions>
142                  <exclusion>
143                       <artifactId>commons-collections</artifactId>
144                       <groupId>commons-collections</groupId>
145                  </exclusion>
146             </exclusions>
147         </dependency>
148         <dependency>
149             <groupId>commons-collections</groupId>
150             <artifactId>commons-collections</artifactId>
151             <version>3.2.2</version>
152         </dependency>
153         <dependency>
154             <groupId>commons-io</groupId>
155             <artifactId>commons-io</artifactId>
156         </dependency>
157     </dependencies>
158 </project>