Roll master for Montreal
[ccsdk/features.git] / sdnr / wt / mountpoint-registrar / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
7   ~ All rights reserved.
8   ~ ================================================================================
9   ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10   ~ ================================================================================
11   ~ Licensed under the Apache License, Version 2.0 (the "License");
12   ~ you may not use this file except in compliance with the License.
13   ~ You may obtain a copy of the License at
14   ~
15   ~     http://www.apache.org/licenses/LICENSE-2.0
16   ~
17   ~ Unless required by applicable law or agreed to in writing, software
18   ~ distributed under the License is distributed on an "AS IS" BASIS,
19   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   ~ See the License for the specific language governing permissions and
21   ~ limitations under the License.
22   ~ ============LICENSE_END=======================================================
23   ~
24   -->
25
26 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28     <modelVersion>4.0.0</modelVersion>
29
30     <parent>
31         <groupId>org.onap.ccsdk.parent</groupId>
32         <artifactId>binding-parent</artifactId>
33         <version>2.5.4</version>
34         <relativePath/>
35     </parent>
36
37     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
38     <artifactId>sdnr-wt-mountpoint-registrar-provider</artifactId>
39     <version>1.6.0-SNAPSHOT</version>
40     <packaging>bundle</packaging>
41
42     <name>ccsdk-features :: ${project.artifactId}</name>
43     <licenses>
44         <license>
45             <name>Apache License, Version 2.0</name>
46             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
47         </license>
48     </licenses>
49
50     <properties>
51         <maven.javadoc.skip>true</maven.javadoc.skip>
52         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
53         <buildtime>${maven.build.timestamp} UTC</buildtime> 
54     </properties>
55
56     <dependencies>
57       <dependency>
58             <groupId>org.apache.kafka</groupId>
59             <artifactId>kafka-clients</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>sdnr-wt-mountpoint-registrar-model</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>sdnr-wt-common</artifactId>
69             <version>${project.version}</version>
70             <scope>provided</scope>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>sdnr-wt-data-provider-model</artifactId>
75             <version>${project.version}</version>
76             <scope>provided</scope>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
81             <version>${project.version}</version>
82             <scope>provided</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.osgi</groupId>
86             <artifactId>org.osgi.core</artifactId>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>sal-netconf-connector</artifactId>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
96             <artifactId>rfc6991-ietf-yang-types</artifactId>
97             <scope>provided</scope>
98         </dependency>
99        <dependency>
100             <groupId>jakarta.servlet</groupId>
101             <artifactId>jakarta.servlet-api</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal</groupId>
106             <artifactId>yang-binding</artifactId>
107             <scope>provided</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.mdsal</groupId>
111             <artifactId>mdsal-singleton-common-api</artifactId>
112             <scope>provided</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.osgi</groupId>
116             <artifactId>org.osgi.compendium</artifactId>
117             <scope>provided</scope>
118         </dependency>
119         <dependency>
120             <groupId>com.google.code.findbugs</groupId>
121             <artifactId>annotations</artifactId>
122             <scope>provided</scope>
123         </dependency>
124         <!-- begin for testing -->
125         <dependency>
126             <groupId>org.mockito</groupId>
127             <artifactId>mockito-core</artifactId>
128             <scope>test</scope>
129         </dependency>
130         <!-- end for testing -->
131
132     </dependencies>
133
134     <build>
135         <resources>
136             <resource>
137                 <directory>src/main/resources</directory>
138                 <filtering>true</filtering>
139             </resource>
140         </resources>
141     </build>
142 </project>