Fixes for the two features that were not installed
[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 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24     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     <parent>
27         <artifactId>appc-interfaces-service</artifactId>
28         <groupId>org.onap.appc</groupId>
29         <version>1.3.0-SNAPSHOT</version>
30     </parent>
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,*;resolution:=optional</Import-Package>
44                          <DynamicImport-Package>*</DynamicImport-Package>
45                                      <Embed-Transitive>true</Embed-Transitive>
46                     </instructions>
47                 </configuration>
48             </plugin>
49         </plugins>
50     </build>
51
52     <dependencies>
53         <dependency>
54             <groupId>org.onap.appc</groupId>
55             <artifactId>appc-interfaces-service-model</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.appc</groupId>
60             <artifactId>appc-aai-client-provider</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
64         <dependency>
65             <groupId>com.google.code.gson</groupId>
66             <artifactId>gson</artifactId>
67             <version>2.8.0</version>
68         </dependency>
69         <dependency>
70                     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
71                    <artifactId>aai-service-provider</artifactId>
72                 <scope>compile</scope>
73             </dependency>
74         <dependency>
75             <groupId>org.apache.commons</groupId>
76             <artifactId>commons-lang3</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82             <scope>test</scope>
83         </dependency>
84
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>config-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>sal-binding-config</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-binding-api</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>sal-common-util</artifactId>
100         </dependency>
101         <dependency>
102             <artifactId>sal-test-model</artifactId>
103             <groupId>org.opendaylight.controller</groupId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <artifactId>sal-rest-connector</artifactId>
108             <groupId>org.opendaylight.netconf</groupId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>sal-binding-broker-impl</artifactId>
114             <scope>test</scope>
115         </dependency>
116
117         <dependency>
118             <groupId>com.att.eelf</groupId>
119             <artifactId>eelf-core</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>com.sun.jersey</groupId>
123             <artifactId>jersey-client</artifactId>
124             <version>1.17</version>
125             <scope>provided</scope>
126         </dependency>
127         <dependency>
128             <groupId>com.fasterxml.jackson.dataformat</groupId>
129             <artifactId>jackson-dataformat-yaml</artifactId>
130             <version>2.3.2</version>
131         </dependency>
132         <dependency>
133             <groupId>com.fasterxml.jackson.core</groupId>
134             <artifactId>jackson-databind</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.apache.commons</groupId>
138             <artifactId>commons-lang3</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.apache.velocity</groupId>
142             <artifactId>velocity</artifactId>
143             <version>1.7</version>
144             <exclusions>
145                  <exclusion>
146                       <artifactId>commons-collections</artifactId>
147                       <groupId>commons-collections</groupId>
148                  </exclusion>
149             </exclusions>
150         </dependency>
151         <dependency>
152             <groupId>commons-collections</groupId>
153             <artifactId>commons-collections</artifactId>
154             <version>3.2.2</version>
155         </dependency>
156         <dependency>
157             <groupId>commons-io</groupId>
158             <artifactId>commons-io</artifactId>
159         </dependency>
160     </dependencies>
161 </project>