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