blob: 8c90e84507909f50165be39f6cd47c70d5bf1e31 [file] [log] [blame]
Herbert Eiselt316dbd62019-01-29 17:23:25 +01001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05002<!--
3 ~ ============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 -->
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -040025
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -040026<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)df195942019-12-12 15:24:53 -050027 <modelVersion>4.0.0</modelVersion>
Herbert Eiseltb4d7ca82019-02-28 17:43:35 +010028
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050029 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)18a3e302022-10-28 10:12:30 -040032 <version>2.5.0</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050033 <relativePath/>
34 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Michael DÜrref3969002021-04-08 06:34:22 +020037 <artifactId>sdnr-wt-websocketmanager-provider</artifactId>
Timoney, Dan (dt5972)18a3e302022-10-28 10:12:30 -040038 <version>1.5.0-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050039 <packaging>bundle</packaging>
40
41 <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>
48
49 <properties>
50 <maven.javadoc.skip>true</maven.javadoc.skip>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050051 </properties>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050052 <dependencies>
53 <dependency>
54 <groupId>${project.groupId}</groupId>
Michael DÜrref3969002021-04-08 06:34:22 +020055 <artifactId>sdnr-wt-websocketmanager-model</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
Ravi Pendurty17614362021-05-25 18:57:29 +053059 <groupId>org.opendaylight.mdsal.model</groupId>
60 <artifactId>ietf-topology</artifactId>
61 <scope>provided</scope>
62 </dependency>
63 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +020064 <groupId>${project.groupId}</groupId>
65 <artifactId>sdnr-wt-yang-utils</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050066 <version>${project.version}</version>
Michael Dürre25423c52022-07-20 09:32:50 +020067 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050068 </dependency>
69 <dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050070 <groupId>org.eclipse.jetty.websocket</groupId>
71 <artifactId>websocket-servlet</artifactId>
Michael Dürre25423c52022-07-20 09:32:50 +020072 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050073 </dependency>
74 <dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050075 <groupId>org.json</groupId>
76 <artifactId>json</artifactId>
Michael Dürre25423c52022-07-20 09:32:50 +020077 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050078 </dependency>
79 <dependency>
highstreetherbertdb9f2672021-04-29 19:06:54 +020080 <groupId>com.typesafe</groupId>
81 <artifactId>config</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +020082 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050083 </dependency>
84 <dependency>
85 <groupId>org.java-websocket</groupId>
86 <artifactId>Java-WebSocket</artifactId>
87 </dependency>
88 <dependency>
Ravi Pendurtyf7cc6a12021-02-03 14:43:58 +010089 <groupId>org.opendaylight.mdsal</groupId>
90 <artifactId>mdsal-binding-api</artifactId>
Michael Dürre25423c52022-07-20 09:32:50 +020091 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050092 </dependency>
93 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +020094 <groupId>org.opendaylight.mdsal</groupId>
95 <artifactId>mdsal-dom-api</artifactId>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
100 <artifactId>rfc6991-ietf-yang-types</artifactId>
101 <scope>provided</scope>
102 </dependency>
103 <dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500104 <groupId>org.osgi</groupId>
105 <artifactId>org.osgi.core</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +0200106 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500107 </dependency>
108 <dependency>
109 <groupId>org.osgi</groupId>
110 <artifactId>org.osgi.compendium</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +0200111 <scope>provided</scope>
112 </dependency>
113 <dependency>
Michael Dürre34f89fa2022-08-31 08:46:55 +0200114 <groupId>com.fasterxml.jackson.datatype</groupId>
115 <artifactId>jackson-datatype-jsr310</artifactId>
116 </dependency>
117 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +0200118 <groupId>org.mockito</groupId>
119 <artifactId>mockito-core</artifactId>
120 <scope>test</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500121 </dependency>
122 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +0200123 <groupId>${project.groupId}</groupId>
Ravi Pendurty17614362021-05-25 18:57:29 +0530124 <artifactId>sdnr-wt-devicemanager-core-provider</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +0200125 <version>${project.version}</version>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>${project.groupId}</groupId>
130 <artifactId>sdnr-wt-data-provider-model</artifactId>
131 <version>${project.version}</version>
132 <scope>test</scope>
133 </dependency>
134
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500135 </dependencies>
Herbert Eiselt316dbd62019-01-29 17:23:25 +0100136</project>