blob: 78e25c80978e49e2f1ac2788362b96bfedc9d567 [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 -->
25
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>
Dan Timoney8413c432021-04-16 08:40:10 -040032 <version>2.1.3-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050033 <relativePath/>
34 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-websocketmanager2-provider</artifactId>
Dan Timoney8ed42322021-04-06 12:49:39 -040038 <version>1.1.4-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>
52
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050053 <dependencies>
54 <dependency>
55 <groupId>${project.groupId}</groupId>
56 <artifactId>sdnr-wt-websocketmanager2-model</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>javax.servlet</groupId>
Ravi Pendurtyf7cc6a12021-02-03 14:43:58 +010061 <artifactId>javax.servlet-api</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050062 </dependency>
63 <dependency>
64 <groupId>org.eclipse.jetty.websocket</groupId>
65 <artifactId>websocket-api</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.eclipse.jetty.websocket</groupId>
69 <artifactId>websocket-servlet</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>io.netty</groupId>
73 <artifactId>netty-transport</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>io.netty</groupId>
77 <artifactId>netty-all</artifactId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050078 <!-- <version>${netty.version}</version> -->
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050079 </dependency>
80 <dependency>
81 <groupId>org.json</groupId>
82 <artifactId>json</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>com.typesafe.akka</groupId>
Ravi Pendurtyf7cc6a12021-02-03 14:43:58 +010086 <artifactId>akka-actor_2.13</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050087 </dependency>
88 <dependency>
89 <groupId>com.typesafe.akka</groupId>
Ravi Pendurtyf7cc6a12021-02-03 14:43:58 +010090 <artifactId>akka-cluster_2.13</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050091 </dependency>
92 <dependency>
93 <groupId>org.java-websocket</groupId>
94 <artifactId>Java-WebSocket</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.mockito</groupId>
98 <artifactId>mockito-core</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050099 <scope>test</scope>
100 </dependency>
101 <dependency>
Ravi Pendurtyf7cc6a12021-02-03 14:43:58 +0100102 <groupId>org.opendaylight.mdsal</groupId>
103 <artifactId>mdsal-binding-api</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500104 </dependency>
105 <dependency>
106 <groupId>org.osgi</groupId>
107 <artifactId>org.osgi.core</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>org.osgi</groupId>
111 <artifactId>org.osgi.compendium</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.eclipse.jetty</groupId>
115 <artifactId>jetty-server</artifactId>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.eclipse.jetty</groupId>
120 <artifactId>jetty-servlet</artifactId>
121 <scope>test</scope>
122 </dependency>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -0500123 </dependencies>
Herbert Eiselt316dbd62019-01-29 17:23:25 +0100124</project>