Change dg-mdsal to blueprint
[appc.git] / appc-dg / appc-dg-shared / appc-dg-mdsal-store / appc-dg-mdsal-bundle / 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   ================================================================================
8   Copyright (C) 2017 Amdocs
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
22   ============LICENSE_END=========================================================
23   -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28     <parent>
29         <groupId>org.onap.appc.parent</groupId>
30         <artifactId>binding-parent</artifactId>
31         <version>1.5.0-SNAPSHOT</version>
32         <relativePath />
33     </parent>
34     <groupId>org.onap.appc</groupId>
35
36     <artifactId>appc-dg-mdsal-bundle</artifactId>
37     <packaging>bundle</packaging>
38
39     <properties>
40         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
42     </properties>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.felix</groupId>
48                 <artifactId>maven-bundle-plugin</artifactId>
49                 <version>${bundle.plugin.version}</version>
50                 <extensions>true</extensions>
51                 <configuration>
52                     <instructions>
53                         <Export-Package>org.onap.appc.mdsal.*</Export-Package>
54                         <Import-Package>*;resolution:=optional</Import-Package>
55                         <DynamicImport-Package>*</DynamicImport-Package>
56                         <Embed-Transitive>true</Embed-Transitive>
57                     </instructions>
58                 </configuration>
59             </plugin>
60         </plugins>
61     </build>
62
63     <dependencies>
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.mockito</groupId>
71             <artifactId>mockito-core</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.powermock</groupId>
75             <artifactId>powermock-api-mockito</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-module-junit4</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>config-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-binding-config</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>sal-binding-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-common-util</artifactId>
96         </dependency>
97         <dependency>
98             <artifactId>sal-test-model</artifactId>
99             <groupId>org.opendaylight.controller</groupId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.controller</groupId>
104             <artifactId>sal-binding-broker-impl</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>sal-binding-broker-impl</artifactId>
110             <classifier>tests</classifier>
111             <version>${odl.mdsal.version}</version>
112             <type>test-jar</type>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.apache.httpcomponents</groupId>
117             <artifactId>httpcore</artifactId>
118             <version>${apache.httpcomponents.version}</version>
119         </dependency>
120         <dependency>
121             <groupId>org.apache.httpcomponents</groupId>
122             <artifactId>httpclient</artifactId>
123             <version>${apache.httpcomponents.version}</version>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.onap.ccsdk.sli.core</groupId>
128             <artifactId>sli-common</artifactId>
129             <scope>compile</scope>
130             <!-- Added exclusion to prevent missing dependency issue on dblib -->
131             <exclusions>
132                 <exclusion>
133                     <groupId>org.onap.ccsdk.sli.core</groupId>
134                     <artifactId>dblib-provider</artifactId>
135                 </exclusion>
136             </exclusions>
137         </dependency>
138
139         <dependency>
140             <groupId>org.onap.ccsdk.sli.core</groupId>
141             <artifactId>sli-provider</artifactId>
142             <scope>compile</scope>
143             <!-- Added exclusion to prevent missing dependency issue on dblib -->
144             <exclusions>
145                 <exclusion>
146                     <groupId>org.onap.ccsdk.sli.core</groupId>
147                     <artifactId>dblib-provider</artifactId>
148                 </exclusion>
149             </exclusions>
150         </dependency>
151
152         <dependency>
153             <groupId>org.onap.appc</groupId>
154             <artifactId>appc-common-bundle</artifactId>
155             <version>${project.version}</version>
156         </dependency>
157         <dependency>
158             <groupId>org.onap.appc</groupId>
159             <artifactId>appc-dg-mdsal-model</artifactId>
160             <version>${project.version}</version>
161         </dependency>
162         <dependency>
163             <groupId>commons-io</groupId>
164             <artifactId>commons-io</artifactId>
165         </dependency>
166     </dependencies>
167     <version>1.5.0-SNAPSHOT</version>
168 </project>