blob: d829b4c26d6ea17348788531fc5eadcf8e822044 [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 -->
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -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>
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -040030 <version>2.4.4</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 Timoney92897642022-09-20 08:48:12 -040036 <version>1.4.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>
56 <artifactId>ietf-alarms</artifactId>
57 <version>${project.version}</version>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020058 </dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020059 <dependency>
60 <groupId>${project.groupId}</groupId>
61 <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
62 <version>${project.version}</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020063 </dependency>
64 <dependency>
65 <groupId>${project.groupId}</groupId>
66 <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
67 <version>${project.version}</version>
68 <scope>provided</scope>
69 </dependency>
70 <dependency>
71 <groupId>${project.groupId}</groupId>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020072 <artifactId>sdnr-wt-data-provider-model</artifactId>
73 <version>${project.version}</version>
Ravi Pendurty1c4ad2b2021-08-09 16:03:02 +053074 <scope>provided</scope>
Michael Dürre25423c52022-07-20 09:32:50 +020075 </dependency>
76 <dependency>
77 <groupId>${project.groupId}</groupId>
78 <artifactId>sdnr-wt-websocketmanager-model</artifactId>
79 <version>${project.version}</version>
80 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>${project.groupId}</groupId>
84 <artifactId>sdnr-wt-common</artifactId>
85 <version>${project.version}</version>
86 <scope>provided</scope>
87 </dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020088 <dependency>
89 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020090 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
91 <version>${project.version}</version>
92 <scope>provided</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.opendaylight.netconf</groupId>
96 <artifactId>sal-netconf-connector</artifactId>
97 <scope>provided</scope>
98 </dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020099 <dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200100 <groupId>org.osgi</groupId>
101 <artifactId>org.osgi.core</artifactId>
102 <scope>provided</scope>
103 </dependency>
Michael Dürre25423c52022-07-20 09:32:50 +0200104 <!-- begin for testing -->
105 <dependency>
106 <groupId>org.mockito</groupId>
107 <artifactId>mockito-core</artifactId>
108 <version>3.2.4</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <artifactId>byte-buddy</artifactId>
113 <groupId>net.bytebuddy</groupId>
114 <scope>test</scope>
115 </dependency>
116 <!-- end for testing -->
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200117 </dependencies>
118
119 <build>
120 <resources>
121 <resource>
122 <directory>src/main/resources</directory>
123 <filtering>true</filtering>
124 </resource>
125 </resources>
126 <plugins>
127 <plugin>
128 <groupId>org.jacoco</groupId>
129 <artifactId>jacoco-maven-plugin</artifactId>
130 <configuration>
131 <excludes>
132 <exclude>**/gen/**</exclude>
133 <exclude>**/generated-sources/**</exclude>
134 <exclude>**/yang-gen-sal/**</exclude>
135 <exclude>**/pax/**</exclude>
136 </excludes>
137 </configuration>
138 </plugin>
139 </plugins>
140 </build>
141</project>