blob: a017c5676c9f2ae79bbc54e8699633b1da0aad74 [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 -->
Ravi Pendurty6b8e4f12023-03-02 12:06:07 +053023
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>
Ravi Pendurty6b8e4f12023-03-02 12:06:07 +053030 <version>2.5.4-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 Timoneyd944abf2023-03-02 07:29:48 -050036 <version>1.5.1-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
47 <properties>
48 <maven.javadoc.skip>true</maven.javadoc.skip>
49 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
50 <buildtime>${maven.build.timestamp} UTC</buildtime>
51 </properties>
52
53 <dependencies>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020054 <dependency>
55 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020056 <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
57 <version>${project.version}</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020058 </dependency>
59 <dependency>
60 <groupId>${project.groupId}</groupId>
61 <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
62 <version>${project.version}</version>
63 <scope>provided</scope>
64 </dependency>
65 <dependency>
66 <groupId>${project.groupId}</groupId>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020067 <artifactId>sdnr-wt-data-provider-model</artifactId>
68 <version>${project.version}</version>
Ravi Pendurty1c4ad2b2021-08-09 16:03:02 +053069 <scope>provided</scope>
Michael Dürre25423c52022-07-20 09:32:50 +020070 </dependency>
71 <dependency>
72 <groupId>${project.groupId}</groupId>
73 <artifactId>sdnr-wt-websocketmanager-model</artifactId>
74 <version>${project.version}</version>
75 <scope>provided</scope>
76 </dependency>
77 <dependency>
78 <groupId>${project.groupId}</groupId>
79 <artifactId>sdnr-wt-common</artifactId>
80 <version>${project.version}</version>
81 <scope>provided</scope>
82 </dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020083 <dependency>
84 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020085 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
86 <version>${project.version}</version>
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>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020094 <dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020095 <groupId>org.osgi</groupId>
96 <artifactId>org.osgi.core</artifactId>
97 <scope>provided</scope>
98 </dependency>
Michael Dürre25423c52022-07-20 09:32:50 +020099 <!-- begin for testing -->
100 <dependency>
101 <groupId>org.mockito</groupId>
102 <artifactId>mockito-core</artifactId>
103 <version>3.2.4</version>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <artifactId>byte-buddy</artifactId>
108 <groupId>net.bytebuddy</groupId>
109 <scope>test</scope>
110 </dependency>
Ravi Pendurty6b8e4f12023-03-02 12:06:07 +0530111 <dependency>
112 <groupId>${project.groupId}</groupId>
113 <artifactId>sdnr-wt-yang-utils</artifactId>
114 <version>${project.version}</version>
115 <scope>provided</scope>
116 </dependency>
117
Michael Dürre25423c52022-07-20 09:32:50 +0200118 <!-- end for testing -->
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200119 </dependencies>
120
121 <build>
122 <resources>
123 <resource>
124 <directory>src/main/resources</directory>
125 <filtering>true</filtering>
126 </resource>
127 </resources>
128 <plugins>
129 <plugin>
130 <groupId>org.jacoco</groupId>
131 <artifactId>jacoco-maven-plugin</artifactId>
132 <configuration>
133 <excludes>
134 <exclude>**/gen/**</exclude>
135 <exclude>**/generated-sources/**</exclude>
136 <exclude>**/yang-gen-sal/**</exclude>
137 <exclude>**/pax/**</exclude>
138 </excludes>
139 </configuration>
140 </plugin>
141 </plugins>
142 </build>
143</project>