blob: 10e64116d8b11c8d98f7c6db9f8633b391997878 [file] [log] [blame]
Ravi Pendurty05fe1142021-04-19 12:46:16 +02001<?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 -->
Dan Timoneybccf4502024-08-08 15:57:35 -040023
Ravi Pendurty05fe1142021-04-19 12:46:16 +020024<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>
Dan Timoneybccf4502024-08-08 15:57:35 -040030 <version>2.8.0-SNAPSHOT</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020031 <relativePath/>
32 </parent>
33
34 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35 <artifactId>sdnr-wt-devicemanager-onap-openroadm-provider</artifactId>
Dan Timoneybccf4502024-08-08 15:57:35 -040036 <version>1.8.0-SNAPSHOT</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020037 <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
Ravi Pendurty05fe1142021-04-19 12:46:16 +020047 <dependencies>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020048 <dependency>
49 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020050 <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
51 <version>${project.version}</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020052 </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>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020061 <artifactId>sdnr-wt-data-provider-model</artifactId>
62 <version>${project.version}</version>
Ravi Pendurty1c4ad2b2021-08-09 16:03:02 +053063 <scope>provided</scope>
Michael Dürre25423c52022-07-20 09:32:50 +020064 </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>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020077 <dependency>
78 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020079 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
80 <version>${project.version}</version>
81 <scope>provided</scope>
82 </dependency>
Michael Dürre7964e8a2024-08-15 10:04:54 +020083 <!-- <dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020084 <groupId>org.opendaylight.netconf</groupId>
85 <artifactId>sal-netconf-connector</artifactId>
86 <scope>provided</scope>
Michael Dürre7964e8a2024-08-15 10:04:54 +020087 </dependency> -->
Michael DÜrrefa0febc2021-06-30 08:26:04 +020088 <dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020089 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.core</artifactId>
91 <scope>provided</scope>
92 </dependency>
Michael Dürre25423c52022-07-20 09:32:50 +020093 <!-- begin for testing -->
94 <dependency>
95 <groupId>org.mockito</groupId>
96 <artifactId>mockito-core</artifactId>
Michael Dürre7964e8a2024-08-15 10:04:54 +020097 <!-- <version>3.2.4</version>-->
Michael Dürre25423c52022-07-20 09:32:50 +020098 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <artifactId>byte-buddy</artifactId>
102 <groupId>net.bytebuddy</groupId>
Michael Dürre7964e8a2024-08-15 10:04:54 +0200103 <version>1.14.9</version>
Michael Dürre25423c52022-07-20 09:32:50 +0200104 <scope>test</scope>
105 </dependency>
Ravi Pendurty6b8e4f12023-03-02 12:06:07 +0530106 <dependency>
107 <groupId>${project.groupId}</groupId>
108 <artifactId>sdnr-wt-yang-utils</artifactId>
109 <version>${project.version}</version>
110 <scope>provided</scope>
111 </dependency>
Michael Dürre7964e8a2024-08-15 10:04:54 +0200112 <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>
Michael Dürre25423c52022-07-20 09:32:50 +0200153 <!-- end for testing -->
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200154 </dependencies>
155
156 <build>
157 <resources>
158 <resource>
159 <directory>src/main/resources</directory>
160 <filtering>true</filtering>
161 </resource>
162 </resources>
Michael Dürre7964e8a2024-08-15 10:04:54 +0200163 <!-- <plugins>
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200164 <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>
Michael Dürre7964e8a2024-08-15 10:04:54 +0200176 </plugins>-->
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200177 </build>
178</project>