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