blob: bf6e4164abf8726ab1ee9d87fc1db8f4f10ff063 [file] [log] [blame]
Herbert Eiselt316dbd62019-01-29 17:23:25 +01001<?xml version="1.0" encoding="UTF-8"?>
Herbert Eiseltb4d7ca82019-02-28 17:43:35 +01002<!-- ============LICENSE_START=======================================================
3 ONAP : ccsdk feature sdnr wt websocketmanager2 ================================================================================
4 Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All
5 rights reserved. ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License"); you may not
7 use this file except in compliance with the License. You may obtain a copy
8 of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
9 by applicable law or agreed to in writing, software distributed under the
10 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
11 OF ANY KIND, either express or implied. See the License for the specific
12 language governing permissions and limitations under the License. ============LICENSE_END========================================================= -->
Herbert Eiseltfeac9882019-03-29 13:26:54 +010013<project xmlns="http://maven.apache.org/POM/4.0.0"
14 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Herbert Eiseltb4d7ca82019-02-28 17:43:35 +010016 <modelVersion>4.0.0</modelVersion>
17 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
18 <artifactId>sdnr-wt-websocketmanager2-provider</artifactId>
Timoney, Dan (dt5972)528f6392019-03-19 18:29:32 -040019 <version>0.4.2-SNAPSHOT</version>
Herbert Eiseltb4d7ca82019-02-28 17:43:35 +010020 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
21 <packaging>bundle</packaging>
22 <parent>
23 <groupId>org.onap.ccsdk.parent</groupId>
24 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)528f6392019-03-19 18:29:32 -040025 <version>1.2.2-SNAPSHOT</version>
Herbert Eiseltfeac9882019-03-29 13:26:54 +010026 <relativePath></relativePath>
Herbert Eiseltb4d7ca82019-02-28 17:43:35 +010027 </parent>
28 <properties>
29 <maven.javadoc.skip>true</maven.javadoc.skip>
30 <checkstyle.skip>true</checkstyle.skip>
31 </properties>
32 <licenses>
33 <license>
34 <name>Apache License, Version 2.0</name>
35 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
36 </license>
37 </licenses>
38<!-- <dependencyManagement> -->
39<!-- <dependencies> -->
40<!-- <dependency> -->
41<!-- <groupId>org.opendaylight.controller</groupId> -->
42<!-- <artifactId>mdsal-artifacts</artifactId> -->
43<!-- <version>1.6.1</version> -->
44<!-- <type>pom</type> -->
45<!-- <scope>import</scope> -->
46<!-- </dependency> -->
47<!-- </dependencies> -->
48<!-- </dependencyManagement> -->
49
50 <dependencies>
51 <dependency>
52 <groupId>${project.groupId}</groupId>
53 <artifactId>sdnr-wt-websocketmanager2-model</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>javax.servlet</groupId>
58 <artifactId>servlet-api</artifactId>
59 <version>2.5</version>
60 </dependency>
61 <dependency>
62 <groupId>org.eclipse.jetty.websocket</groupId>
63 <artifactId>websocket-api</artifactId>
64 <version>9.3.24.v20180605</version>
65 </dependency>
66 <dependency>
67 <groupId>org.eclipse.jetty.websocket</groupId>
68 <artifactId>websocket-servlet</artifactId>
69 <version>9.3.24.v20180605</version>
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>
78 <!-- <version>${netty.version}</version> -->
79 </dependency>
80 <dependency>
81 <groupId>org.json</groupId>
82 <artifactId>json</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>com.typesafe.akka</groupId>
86 <artifactId>akka-actor_2.12</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>com.typesafe.akka</groupId>
90 <artifactId>akka-cluster_2.12</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.java-websocket</groupId>
94 <artifactId>Java-WebSocket</artifactId>
95 <version>1.3.8</version>
96 </dependency>
97 <dependency>
98 <groupId>org.mockito</groupId>
99 <artifactId>mockito-core</artifactId>
100 <!-- <version>2.23.4</version> -->
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.opendaylight.controller</groupId>
105 <artifactId>sal-binding-api</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.osgi</groupId>
109 <artifactId>org.osgi.core</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>org.osgi</groupId>
113 <artifactId>org.osgi.compendium</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>org.eclipse.jetty</groupId>
117 <artifactId>jetty-server</artifactId>
118 <scope>test</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.eclipse.jetty</groupId>
122 <artifactId>jetty-servlet</artifactId>
123 <version>9.3.24.v20180605</version>
124 <scope>test</scope>
125 </dependency>
126<!-- <dependency> -->
127<!-- <groupId>org.eclipse.jetty.websocket</groupId> -->
128<!-- <artifactId>websocket-api</artifactId> -->
129<!-- <version>9.3.24.v20180605</version> -->
130<!-- </dependency> -->
131 <!-- To run websockets in embedded server -->
132 <!-- <dependency> -->
133 <!-- <groupId>org.eclipse.jetty.websocket</groupId> -->
134 <!-- <artifactId>websocket-server</artifactId> -->
135 <!-- <version>9.3.24.v20180605</version> -->
136 <!-- </dependency> -->
137 <!-- <dependency> -->
138 <!-- <groupId>org.eclipse.jetty.websocket</groupId> -->
139 <!-- <artifactId>websocket-server</artifactId> -->
140 <!-- <version>9.3.24.v20180605</version> -->
141 <!-- <scope>test</scope> -->
142 <!-- </dependency> -->
143 </dependencies>
144 <build>
145 <plugins>
146 <plugin>
147 <groupId>org.apache.maven.plugins</groupId>
148 <artifactId>maven-compiler-plugin</artifactId>
149 <configuration>
150 <source>1.8</source>
151 <target>1.8</target>
152 </configuration>
153 </plugin>
154 </plugins>
155
156 </build>
Herbert Eiselt316dbd62019-01-29 17:23:25 +0100157</project>