blob: 14e71a6bdfb1db1b661f6f7134d6409e971c0bb9 [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 Pendurty05fe1142021-04-19 12:46:16 +020023<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">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>binding-parent</artifactId>
Dan Timoney94726712023-10-13 16:35:09 -040029 <version>2.6.1</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
34 <artifactId>sdnr-wt-devicemanager-onap-openroadm-provider</artifactId>
Dan Timoney37a05722023-06-06 06:55:17 -040035 <version>1.6.0-SNAPSHOT</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020036 <packaging>bundle</packaging>
37
38 <name>ccsdk-features :: ${project.artifactId}</name>
39 <licenses>
40 <license>
41 <name>Apache License, Version 2.0</name>
42 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
43 </license>
44 </licenses>
45
46 <properties>
47 <maven.javadoc.skip>true</maven.javadoc.skip>
48 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
49 <buildtime>${maven.build.timestamp} UTC</buildtime>
50 </properties>
51
52 <dependencies>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020053 <dependency>
54 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020055 <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
56 <version>${project.version}</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020057 </dependency>
58 <dependency>
59 <groupId>${project.groupId}</groupId>
60 <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
61 <version>${project.version}</version>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>${project.groupId}</groupId>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020066 <artifactId>sdnr-wt-data-provider-model</artifactId>
67 <version>${project.version}</version>
Ravi Pendurty1c4ad2b2021-08-09 16:03:02 +053068 <scope>provided</scope>
Michael Dürre25423c52022-07-20 09:32:50 +020069 </dependency>
70 <dependency>
71 <groupId>${project.groupId}</groupId>
72 <artifactId>sdnr-wt-websocketmanager-model</artifactId>
73 <version>${project.version}</version>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
77 <groupId>${project.groupId}</groupId>
78 <artifactId>sdnr-wt-common</artifactId>
79 <version>${project.version}</version>
80 <scope>provided</scope>
81 </dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020082 <dependency>
83 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020084 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
85 <version>${project.version}</version>
86 <scope>provided</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.opendaylight.netconf</groupId>
90 <artifactId>sal-netconf-connector</artifactId>
91 <scope>provided</scope>
92 </dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020093 <dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020094 <groupId>org.osgi</groupId>
95 <artifactId>org.osgi.core</artifactId>
96 <scope>provided</scope>
97 </dependency>
Michael Dürre25423c52022-07-20 09:32:50 +020098 <!-- begin for testing -->
99 <dependency>
100 <groupId>org.mockito</groupId>
101 <artifactId>mockito-core</artifactId>
102 <version>3.2.4</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <artifactId>byte-buddy</artifactId>
107 <groupId>net.bytebuddy</groupId>
108 <scope>test</scope>
109 </dependency>
Ravi Pendurty6b8e4f12023-03-02 12:06:07 +0530110 <dependency>
111 <groupId>${project.groupId}</groupId>
112 <artifactId>sdnr-wt-yang-utils</artifactId>
113 <version>${project.version}</version>
114 <scope>provided</scope>
115 </dependency>
116
Michael Dürre25423c52022-07-20 09:32:50 +0200117 <!-- end for testing -->
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200118 </dependencies>
119
120 <build>
121 <resources>
122 <resource>
123 <directory>src/main/resources</directory>
124 <filtering>true</filtering>
125 </resource>
126 </resources>
127 <plugins>
128 <plugin>
129 <groupId>org.jacoco</groupId>
130 <artifactId>jacoco-maven-plugin</artifactId>
131 <configuration>
132 <excludes>
133 <exclude>**/gen/**</exclude>
134 <exclude>**/generated-sources/**</exclude>
135 <exclude>**/yang-gen-sal/**</exclude>
136 <exclude>**/pax/**</exclude>
137 </excludes>
138 </configuration>
139 </plugin>
140 </plugins>
141 </build>
142</project>