Release appc
[appc.git] / appc-inbound / appc-design-services / provider / 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   Modification Copyright (C) 2018 IBM
9   ================================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13   
14        http://www.apache.org/licenses/LICENSE-2.0
15   
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21   ============LICENSE_END=========================================================
22   -->
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>2.7.2</version>
29                 <relativePath/>
30         </parent>
31         <groupId>org.onap.appc</groupId>
32     <artifactId>appc-design-services-provider</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.design.services</Export-Package>
44                         <Import-Package>org.onap.appc.instar,*;resolution:=optional</Import-Package>
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.mockito</groupId>
56             <artifactId>mockito-core</artifactId>            
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.javassist</groupId>
61             <artifactId>javassist</artifactId>
62             <version>3.22.0-GA</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.onap.appc</groupId>
67             <artifactId>appc-design-services-model</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>org.onap.appc</groupId>
72             <artifactId>appc-network-inventory-client-provider</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>org.onap.ccsdk.sli.core</groupId>
77             <artifactId>sli-provider</artifactId>
78         </dependency>
79
80         <dependency>
81             <groupId>org.apache.commons</groupId>
82             <artifactId>commons-lang3</artifactId>
83         </dependency>
84
85         <dependency>
86             <groupId>junit</groupId>
87             <artifactId>junit</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.jasypt</groupId>
92             <artifactId>jasypt</artifactId>
93             <version>1.9.2</version>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>config-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         <dependency>
114          <groupId>ch.qos.logback</groupId>
115          <artifactId>logback-classic</artifactId>
116          <version>${logback.version}</version>
117         </dependency>
118         <dependency>
119             <groupId>com.att.eelf</groupId>
120             <artifactId>eelf-core</artifactId>
121             <exclusions>
122                  <exclusion>
123                       <groupId>ch.qos.logback</groupId>
124                       <artifactId>logback-classic</artifactId>
125                  </exclusion>
126             </exclusions>
127         </dependency>
128         <dependency>
129             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
130             <artifactId>sql-resource-provider</artifactId>
131             <version>${ccsdk.sli.adaptors.version}</version>
132         </dependency>
133         <dependency>
134             <groupId>org.onap.ccsdk.sli.core</groupId>
135             <artifactId>sli-provider</artifactId>
136         </dependency>
137        <dependency>
138             <groupId>org.glassfish.jersey.core</groupId>
139             <artifactId>jersey-client</artifactId>
140             <scope>provided</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.onap.ccsdk.sli.core</groupId>
144             <artifactId>sli-common</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>com.fasterxml.jackson.dataformat</groupId>
148             <artifactId>jackson-dataformat-yaml</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>com.fasterxml.jackson.core</groupId>
152             <artifactId>jackson-databind</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>com.fasterxml.jackson.core</groupId>
156             <artifactId>jackson-core</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.yaml</groupId>
160             <artifactId>snakeyaml</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>org.apache.commons</groupId>
164             <artifactId>commons-lang3</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>org.apache.velocity</groupId>
168             <artifactId>velocity</artifactId>
169             <version>1.7</version>
170             <exclusions>
171                   <exclusion>
172                         <artifactId>commons-collections</artifactId>
173                         <groupId>commons-collections</groupId>
174                   </exclusion>
175             </exclusions>
176         </dependency>
177         <dependency>
178             <groupId>commons-collections</groupId>
179             <artifactId>commons-collections</artifactId>
180             <version>3.2.2</version>
181         </dependency>
182         <dependency>
183             <groupId>commons-io</groupId>
184             <artifactId>commons-io</artifactId>
185         </dependency>
186         <dependency>
187             <groupId>org.powermock</groupId>
188             <artifactId>powermock-module-junit4-rule-agent</artifactId>
189             <version>1.6.5</version>
190             <scope>test</scope>
191         </dependency>
192         <dependency>
193             <groupId>org.powermock</groupId>
194             <artifactId>powermock-api-mockito-common</artifactId>
195             <version>1.6.5</version>
196         </dependency>
197     </dependencies>
198     <version>1.7.2</version>
199 </project>