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