blob: 33809af7a7f63b3d14e02602879292627d56912d [file] [log] [blame]
Niranjana8e683ff2021-08-26 16:34:02 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
Niranjana81043462022-03-03 12:45:38 +00006 ~ Copyright (C) 2021-2022 Wipro Limited.
Niranjana8e683ff2021-08-26 16:34:02 +00007 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=======================================================
20 ~
21 -->
Niranjanaa5498e52021-09-16 09:05:06 +000022<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">
Niranjana8e683ff2021-08-26 16:34:02 +000023 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onap.ccsdk.parent</groupId>
27 <artifactId>binding-parent</artifactId>
Dan Timoneyc35ad792023-06-28 11:38:33 -040028 <version>2.6.0</version>
Niranjana8e683ff2021-08-26 16:34:02 +000029 <relativePath/>
30 </parent>
31
32 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33 <artifactId>addCMHandle-provider</artifactId>
Dan Timoney37a05722023-06-06 06:55:17 -040034 <version>1.6.0-SNAPSHOT</version>
Niranjana8e683ff2021-08-26 16:34:02 +000035 <packaging>bundle</packaging>
36
37 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
38
Niranjana8e683ff2021-08-26 16:34:02 +000039 <dependencies>
40 <dependency>
41 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
42 <artifactId>addCMHandle-model</artifactId>
43 <version>${project.version}</version>
Niranjana81043462022-03-03 12:45:38 +000044 </dependency>
45 <dependency>
46 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.core</artifactId>
48 <scope>provided</scope>
49 </dependency>
50 <!-- md-sal -->
51 <dependency>
52 <groupId>org.opendaylight.mdsal</groupId>
53 <artifactId>mdsal-binding-dom-codec-api</artifactId>
54 <scope>provided</scope>
Niranjana8e683ff2021-08-26 16:34:02 +000055 </dependency>
56 <dependency>
Niranjanaa5498e52021-09-16 09:05:06 +000057 <groupId>org.opendaylight.mdsal</groupId>
Niranjana81043462022-03-03 12:45:38 +000058 <artifactId>mdsal-binding-dom-adapter</artifactId>
59 <scope>provided</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.opendaylight.mdsal</groupId>
Niranjana81043462022-03-03 12:45:38 +000063 <artifactId>mdsal-binding-runtime-spi</artifactId>
64 <scope>provided</scope>
Niranjana8e683ff2021-08-26 16:34:02 +000065 </dependency>
66 <dependency>
Niranjanaa5498e52021-09-16 09:05:06 +000067 <groupId>org.opendaylight.mdsal</groupId>
68 <artifactId>mdsal-dom-api</artifactId>
Niranjanaa5498e52021-09-16 09:05:06 +000069 <scope>provided</scope>
70 </dependency>
71 <dependency>
Niranjana81043462022-03-03 12:45:38 +000072 <groupId>org.opendaylight.mdsal</groupId>
73 <artifactId>mdsal-singleton-common-api</artifactId>
Niranjanaa5498e52021-09-16 09:05:06 +000074 <scope>provided</scope>
75 </dependency>
76 <dependency>
Niranjana81043462022-03-03 12:45:38 +000077 <groupId>org.opendaylight.netconf</groupId>
78 <artifactId>netconf-dom-api</artifactId>
Niranjanaa5498e52021-09-16 09:05:06 +000079 <scope>provided</scope>
Niranjanaa5498e52021-09-16 09:05:06 +000080 </dependency>
81 <dependency>
82 <groupId>org.opendaylight.netconf</groupId>
83 <artifactId>sal-netconf-connector</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
Dan Timoneyc35ad792023-06-28 11:38:33 -040087 <groupId>org.opendaylight.netconf</groupId>
88 <artifactId>netconf-topology</artifactId>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
Niranjana81043462022-03-03 12:45:38 +000092 <groupId>com.fasterxml.jackson.core</groupId>
93 <artifactId>jackson-core</artifactId>
Niranjanaa5498e52021-09-16 09:05:06 +000094 <scope>provided</scope>
95 </dependency>
96 <dependency>
Niranjana81043462022-03-03 12:45:38 +000097 <groupId>com.fasterxml.jackson.core</groupId>
98 <artifactId>jackson-annotations</artifactId>
Niranjanaa5498e52021-09-16 09:05:06 +000099 <scope>provided</scope>
100 </dependency>
101 <dependency>
Niranjana81043462022-03-03 12:45:38 +0000102 <groupId>com.fasterxml.jackson.core</groupId>
103 <artifactId>jackson-databind</artifactId>
Niranjanaa5498e52021-09-16 09:05:06 +0000104 <scope>provided</scope>
Niranjana8e683ff2021-08-26 16:34:02 +0000105 </dependency>
Niranjana81043462022-03-03 12:45:38 +0000106 <dependency>
107 <groupId>org.mockito</groupId>
108 <artifactId>mockito-inline</artifactId>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.onap.ccsdk.sli.core</groupId>
113 <artifactId>sli-common</artifactId>
114 <version>${ccsdk.sli.version}</version>
115 </dependency>
Niranjana8e683ff2021-08-26 16:34:02 +0000116 </dependencies>
117
118 <build>
119 <pluginManagement>
120 <plugins>
121 <plugin>
122 <groupId>org.eclipse.m2e</groupId>
123 <artifactId>lifecycle-mapping</artifactId>
124 <version>1.0.0</version>
125 <configuration>
126 <lifecycleMappingMetadata>
127 <pluginExecutions>
128 <pluginExecution>
129 <pluginExecutionFilter>
130 <groupId>org.codehaus.mojo</groupId>
131 <artifactId>properties-maven-plugin</artifactId>
132 <versionRange>[1.0.0,)</versionRange>
133 <goals>
134 <goal>set-system-properties</goal>
135 </goals>
136 </pluginExecutionFilter>
137 <action>
138 <execute/>
139 </action>
140 </pluginExecution>
141 </pluginExecutions>
142 </lifecycleMappingMetadata>
143 </configuration>
Niranjana81043462022-03-03 12:45:38 +0000144 </plugin>
Niranjanaa5498e52021-09-16 09:05:06 +0000145 </plugins>
Niranjana8e683ff2021-08-26 16:34:02 +0000146 </pluginManagement>
147 </build>
Niranjana8e683ff2021-08-26 16:34:02 +0000148</project>