blob: 8b9f232ffc8bb4fac483d9c220a7900cc6d3b3f3 [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)9560e602019-04-24 16:04:56 -040025<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 -050026 <modelVersion>4.0.0</modelVersion>
Herbert Eiseltb4d7ca82019-02-28 17:43:35 +010027
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050028 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Dan Timoney122ea412023-03-30 20:34:47 -040031 <version>2.5.4</version>
32 <relativePath/>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050033 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Michael DÜrref3969002021-04-08 06:34:22 +020036 <artifactId>sdnr-wt-websocketmanager-provider</artifactId>
Dan Timoney37a05722023-06-06 06:55:17 -040037 <version>1.6.0-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050038 <packaging>bundle</packaging>
39
40 <name>ccsdk-features :: ${project.artifactId}</name>
41 <licenses>
42 <license>
43 <name>Apache License, Version 2.0</name>
44 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
45 </license>
46 </licenses>
47
48 <properties>
49 <maven.javadoc.skip>true</maven.javadoc.skip>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050050 </properties>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050051 <dependencies>
52 <dependency>
53 <groupId>${project.groupId}</groupId>
Ravi Pendurty1d318802023-03-14 19:31:54 +053054 <artifactId>sdnr-wt-common</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +020055 <version>${project.version}</version>
Ravi Pendurty1d318802023-03-14 19:31:54 +053056 <scope>provided</scope>
Michael DÜrref3969002021-04-08 06:34:22 +020057 </dependency>
58 <dependency>
Ravi Pendurty1d318802023-03-14 19:31:54 +053059 <groupId>${project.groupId}</groupId>
60 <artifactId>sdnr-wt-websocketmanager-model</artifactId>
61 <version>${project.version}</version>
Ravi Pendurty17614362021-05-25 18:57:29 +053062 </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>
Ravi Pendurty1d318802023-03-14 19:31:54 +053070 <groupId>org.opendaylight.mdsal.model</groupId>
71 <artifactId>ietf-topology</artifactId>
72 <scope>provided</scope>
73 </dependency>
74 <dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050075 <groupId>org.eclipse.jetty.websocket</groupId>
76 <artifactId>websocket-servlet</artifactId>
Ravi Pendurty1d318802023-03-14 19:31:54 +053077 </dependency>
78 <dependency>
79 <groupId>org.eclipse.jetty.websocket</groupId>
80 <artifactId>websocket-server</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.eclipse.jetty</groupId>
84 <artifactId>jetty-util</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050085 </dependency>
86 <dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050087 <groupId>org.json</groupId>
88 <artifactId>json</artifactId>
Michael Dürre25423c52022-07-20 09:32:50 +020089 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050090 </dependency>
91 <dependency>
highstreetherbertdb9f2672021-04-29 19:06:54 +020092 <groupId>com.typesafe</groupId>
93 <artifactId>config</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +020094 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050095 </dependency>
96 <dependency>
97 <groupId>org.java-websocket</groupId>
98 <artifactId>Java-WebSocket</artifactId>
99 </dependency>
100 <dependency>
Ravi Pendurtyf7cc6a12021-02-03 14:43:58 +0100101 <groupId>org.opendaylight.mdsal</groupId>
102 <artifactId>mdsal-binding-api</artifactId>
Michael Dürre25423c52022-07-20 09:32:50 +0200103 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500104 </dependency>
105 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +0200106 <groupId>org.opendaylight.mdsal</groupId>
107 <artifactId>mdsal-dom-api</artifactId>
108 <scope>provided</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
112 <artifactId>rfc6991-ietf-yang-types</artifactId>
113 <scope>provided</scope>
114 </dependency>
115 <dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500116 <groupId>org.osgi</groupId>
117 <artifactId>org.osgi.core</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +0200118 <scope>provided</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500119 </dependency>
120 <dependency>
121 <groupId>org.osgi</groupId>
122 <artifactId>org.osgi.compendium</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +0200123 <scope>provided</scope>
124 </dependency>
125 <dependency>
Michael Dürre34f89fa2022-08-31 08:46:55 +0200126 <groupId>com.fasterxml.jackson.datatype</groupId>
127 <artifactId>jackson-datatype-jsr310</artifactId>
128 </dependency>
129 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +0200130 <groupId>org.mockito</groupId>
131 <artifactId>mockito-core</artifactId>
132 <scope>test</scope>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500133 </dependency>
134 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +0200135 <groupId>${project.groupId}</groupId>
Ravi Pendurty17614362021-05-25 18:57:29 +0530136 <artifactId>sdnr-wt-devicemanager-core-provider</artifactId>
Michael DÜrref3969002021-04-08 06:34:22 +0200137 <version>${project.version}</version>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>${project.groupId}</groupId>
142 <artifactId>sdnr-wt-data-provider-model</artifactId>
143 <version>${project.version}</version>
144 <scope>test</scope>
145 </dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500146 </dependencies>
Herbert Eiselt316dbd62019-01-29 17:23:25 +0100147</project>