Use released Oslo/Potassium parent poms
[ccsdk/features.git] / sdnr / wt / devicemanager-onap / openroadm / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
7   ~ All rights reserved.
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   ~
22   -->
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
27     <parent>
28         <groupId>org.onap.ccsdk.parent</groupId>
29         <artifactId>binding-parent</artifactId>
30         <version>2.8.0</version>
31         <relativePath/>
32     </parent>
33
34     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35     <artifactId>sdnr-wt-devicemanager-onap-openroadm-provider</artifactId>
36     <version>1.8.0-SNAPSHOT</version>
37     <packaging>bundle</packaging>
38
39     <name>ccsdk-features :: ${project.artifactId}</name>
40     <licenses>
41         <license>
42             <name>Apache License, Version 2.0</name>
43             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
44         </license>
45     </licenses>
46
47     <dependencies>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
56             <version>${project.version}</version>
57             <scope>provided</scope>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>sdnr-wt-data-provider-model</artifactId>
62             <version>${project.version}</version>
63             <scope>provided</scope>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>sdnr-wt-websocketmanager-model</artifactId>
68             <version>${project.version}</version>
69             <scope>provided</scope>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>sdnr-wt-common</artifactId>
74             <version>${project.version}</version>
75             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
80             <version>${project.version}</version>
81             <scope>provided</scope>
82         </dependency>
83         <!-- <dependency>
84             <groupId>org.opendaylight.netconf</groupId>
85             <artifactId>sal-netconf-connector</artifactId>
86             <scope>provided</scope>
87         </dependency> -->
88         <dependency>
89             <groupId>org.osgi</groupId>
90             <artifactId>org.osgi.core</artifactId>
91             <scope>provided</scope>
92         </dependency>
93          <!-- begin for testing -->
94         <dependency>
95             <groupId>org.mockito</groupId>
96             <artifactId>mockito-core</artifactId>
97           <!--  <version>3.2.4</version>-->
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <artifactId>byte-buddy</artifactId>
102             <groupId>net.bytebuddy</groupId>
103             <version>1.14.9</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>sdnr-wt-yang-utils</artifactId>
109             <version>${project.version}</version>
110             <scope>provided</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
114             <artifactId>rfc6991-ietf-inet-types</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
118             <artifactId>rfc6991-ietf-yang-types</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.netconf.model</groupId>
122             <artifactId>rfc6241</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.netconf.model</groupId>
126             <artifactId>rfc6470</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal</groupId>
130             <artifactId>mdsal-common-api</artifactId>
131             <scope>provided</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.mdsal</groupId>
135             <artifactId>mdsal-binding-api</artifactId>
136             <scope>provided</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.mdsal</groupId>
140             <artifactId>mdsal-dom-api</artifactId>
141             <scope>provided</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.mdsal.model</groupId>
145             <artifactId>ietf-topology</artifactId>
146             <scope>provided</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.opendaylight.netconf</groupId>
150             <artifactId>netconf-topology</artifactId>
151             <scope>provided</scope>
152         </dependency>
153         <!-- end for testing -->
154     </dependencies>
155
156     <build>
157         <resources>
158             <resource>
159                 <directory>src/main/resources</directory>
160                 <filtering>true</filtering>
161             </resource>
162         </resources>
163        <!-- <plugins>
164             <plugin>
165                 <groupId>org.jacoco</groupId>
166                 <artifactId>jacoco-maven-plugin</artifactId>
167                 <configuration>
168                     <excludes>
169                         <exclude>**/gen/**</exclude>
170                         <exclude>**/generated-sources/**</exclude>
171                         <exclude>**/yang-gen-sal/**</exclude>
172                         <exclude>**/pax/**</exclude>
173                     </excludes>
174                 </configuration>
175             </plugin>
176         </plugins>-->
177     </build>
178 </project>