Fixes for the two features that were not installed
[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 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-design-services</artifactId>
28         <groupId>org.onap.appc</groupId>
29         <version>1.3.0-SNAPSHOT</version>
30     </parent>
31     <artifactId>appc-design-services-provider</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.design.services</Export-Package>
43                         <Import-Package>org.onap.appc.instar,*;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.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <version>1.9.5</version>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.onap.appc</groupId>
62             <artifactId>appc-design-services-model</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.onap.appc</groupId>
66             <artifactId>appc-network-inventory-client-provider</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.onap.ccsdk.sli.core</groupId>
71             <artifactId>sli-provider</artifactId>
72         </dependency>
73
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         <dependency>
85             <groupId>org.jasypt</groupId>
86             <artifactId>jasypt</artifactId>
87             <version>1.9.2</version>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>config-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-binding-config</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>sal-binding-api</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>sal-common-util</artifactId>
104         </dependency>
105         <dependency>
106             <artifactId>sal-test-model</artifactId>
107             <groupId>org.opendaylight.controller</groupId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <artifactId>sal-rest-connector</artifactId>
112             <groupId>org.opendaylight.netconf</groupId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.controller</groupId>
117             <artifactId>sal-binding-broker-impl</artifactId>
118             <scope>test</scope>
119         </dependency>
120
121         <dependency>
122             <groupId>com.att.eelf</groupId>
123             <artifactId>eelf-core</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
127             <artifactId>sql-resource-provider</artifactId>
128             <version>${ccsdk.sli.adaptors.version}</version>
129         </dependency>
130         <dependency>
131             <groupId>org.onap.ccsdk.sli.core</groupId>
132             <artifactId>sli-provider</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>com.sun.jersey</groupId>
136             <artifactId>jersey-client</artifactId>
137             <version>1.17</version>
138             <scope>provided</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.onap.ccsdk.sli.core</groupId>
142             <artifactId>sli-common</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>com.fasterxml.jackson.dataformat</groupId>
146             <artifactId>jackson-dataformat-yaml</artifactId>
147             <version>2.3.2</version>
148         </dependency>
149         <dependency>
150             <groupId>com.fasterxml.jackson.core</groupId>
151             <artifactId>jackson-databind</artifactId>
152         </dependency>
153         <dependency>
154             <groupId>org.apache.commons</groupId>
155             <artifactId>commons-lang3</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.apache.velocity</groupId>
159             <artifactId>velocity</artifactId>
160             <version>1.7</version>
161             <exclusions>
162                   <exclusion>
163                         <artifactId>commons-collections</artifactId>
164                         <groupId>commons-collections</groupId>
165                   </exclusion>
166             </exclusions>
167         </dependency>
168         <dependency>
169             <groupId>commons-collections</groupId>
170             <artifactId>commons-collections</artifactId>
171             <version>3.2.2</version>
172         </dependency>
173         <dependency>
174             <groupId>commons-io</groupId>
175             <artifactId>commons-io</artifactId>
176         </dependency>
177         <dependency>
178             <groupId>org.powermock</groupId>
179             <artifactId>powermock-module-junit4-rule-agent</artifactId>
180             <version>1.6.5</version>
181             <scope>test</scope>
182         </dependency>
183         <dependency>
184             <groupId>org.powermock</groupId>
185             <artifactId>powermock-api-mockito-common</artifactId>
186             <version>1.6.5</version>
187         </dependency>
188     </dependencies>
189 </project>