blob: 7f710f72296d326b853e3be5fb1b3d0afc5715de [file] [log] [blame]
herbert8fb01422020-01-30 11:46:02 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10 ~ ================================================================================
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 ~ ============LICENSE_END=======================================================
23 ~
24 -->
25
herbert8fb01422020-01-30 11:46:02 +010026<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">
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050027 <modelVersion>4.0.0</modelVersion>
herbert8fb01422020-01-30 11:46:02 +010028
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050029 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Dan Timoney8413c432021-04-16 08:40:10 -040032 <version>2.1.3-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050033 <relativePath/>
34 </parent>
herbert8fb01422020-01-30 11:46:02 +010035
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050036 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-mountpoint-state-provider-provider</artifactId>
Dan Timoney8ed42322021-04-06 12:49:39 -040038 <version>1.1.4-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050039 <packaging>bundle</packaging>
herbert8fb01422020-01-30 11:46:02 +010040
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050041 <name>ccsdk-features :: ${project.artifactId}</name>
42 <licenses>
43 <license>
44 <name>Apache License, Version 2.0</name>
45 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46 </license>
47 </licenses>
herbert8fb01422020-01-30 11:46:02 +010048
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050049 <properties>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050050 <maven.javadoc.skip>true</maven.javadoc.skip>
51 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
52 <buildtime>${maven.build.timestamp} UTC</buildtime>
53 </properties>
herbert8fb01422020-01-30 11:46:02 +010054
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050055 <dependencies>
56 <!-- begin for testing -->
57 <dependency>
58 <groupId>org.mockito</groupId>
59 <artifactId>mockito-core</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <!-- end for testing -->
63 <dependency>
64 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
65 <artifactId>sdnr-wt-common</artifactId>
66 <version>${project.version}</version>
67 <scope>provided</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Ravi Pendurty6e164bc2020-08-18 15:30:11 +020071 <artifactId>sdnr-wt-devicemanager-model</artifactId>
72 <version>${project.version}</version>
73 <scope>provided</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Ravi Pendurty23c27dd2020-06-16 11:23:52 +020077 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050078 <version>${project.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.osgi</groupId>
82 <artifactId>org.osgi.core</artifactId>
83 <scope>provided</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.opendaylight.netconf</groupId>
87 <artifactId>sal-netconf-connector</artifactId>
88 <scope>provided</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
92 <artifactId>rfc6991-ietf-yang-types</artifactId>
93 <scope>provided</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.opendaylight.mdsal</groupId>
97 <artifactId>yang-binding</artifactId>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.opendaylight.mdsal</groupId>
102 <artifactId>mdsal-singleton-common-api</artifactId>
103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.osgi</groupId>
107 <artifactId>org.osgi.compendium</artifactId>
108 <scope>provided</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
112 <artifactId>dmaapClient</artifactId>
Ravi Pendurty23c27dd2020-06-16 11:23:52 +0200113 <version>1.1.12</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500114 </dependency>
115 </dependencies>
herbert8fb01422020-01-30 11:46:02 +0100116
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500117 <build>
118 <resources>
119 <resource>
120 <directory>src/main/resources</directory>
121 <filtering>true</filtering>
122 </resource>
123 </resources>
124 </build>
herbert8fb01422020-01-30 11:46:02 +0100125</project>