Update to use released 1.2.2 parent
[ccsdk/features.git] / sdnr / wt / websocketmanager2 / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- ============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========================================================= -->
13 <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">
14   <modelVersion>4.0.0</modelVersion>
15   <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
16   <artifactId>sdnr-wt-websocketmanager2-provider</artifactId>
17   <version>0.4.2-SNAPSHOT</version>
18   <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
19   <packaging>bundle</packaging>
20   <parent>
21     <groupId>org.onap.ccsdk.parent</groupId>
22     <artifactId>binding-parent</artifactId>
23     <version>1.2.2</version>
24     <relativePath/>
25   </parent>
26   <properties>
27     <maven.javadoc.skip>true</maven.javadoc.skip>
28     <checkstyle.skip>true</checkstyle.skip>
29   </properties>
30   <licenses>
31     <license>
32       <name>Apache License, Version 2.0</name>
33       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
34     </license>
35   </licenses>
36 <!--     <dependencyManagement> -->
37 <!--         <dependencies> -->
38 <!--             <dependency> -->
39 <!--                 <groupId>org.opendaylight.controller</groupId> -->
40 <!--                 <artifactId>mdsal-artifacts</artifactId> -->
41 <!--                 <version>1.6.1</version> -->
42 <!--                 <type>pom</type> -->
43 <!--                 <scope>import</scope> -->
44 <!--             </dependency> -->
45 <!--         </dependencies> -->
46 <!--     </dependencyManagement> -->
47
48   <dependencies>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>sdnr-wt-websocketmanager2-model</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>javax.servlet</groupId>
56       <artifactId>servlet-api</artifactId>
57       <version>2.5</version>
58     </dependency>
59     <dependency>
60       <groupId>org.eclipse.jetty.websocket</groupId>
61       <artifactId>websocket-api</artifactId>
62       <version>9.3.24.v20180605</version>
63     </dependency>
64     <dependency>
65       <groupId>org.eclipse.jetty.websocket</groupId>
66       <artifactId>websocket-servlet</artifactId>
67       <version>9.3.24.v20180605</version>
68     </dependency>
69     <dependency>
70       <groupId>io.netty</groupId>
71       <artifactId>netty-transport</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>io.netty</groupId>
75       <artifactId>netty-all</artifactId>
76             <!-- <version>${netty.version}</version> -->
77     </dependency>
78     <dependency>
79       <groupId>org.json</groupId>
80       <artifactId>json</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.typesafe.akka</groupId>
84       <artifactId>akka-actor_2.12</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.typesafe.akka</groupId>
88       <artifactId>akka-cluster_2.12</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.java-websocket</groupId>
92       <artifactId>Java-WebSocket</artifactId>
93       <version>1.3.8</version>
94     </dependency>
95     <dependency>
96       <groupId>org.mockito</groupId>
97       <artifactId>mockito-core</artifactId>
98             <!-- <version>2.23.4</version> -->
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>sal-binding-api</artifactId>
104     </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       <version>9.3.24.v20180605</version>
122       <scope>test</scope>
123     </dependency>
124 <!--     <dependency> -->
125 <!--       <groupId>org.eclipse.jetty.websocket</groupId> -->
126 <!--       <artifactId>websocket-api</artifactId> -->
127 <!--       <version>9.3.24.v20180605</version> -->
128 <!--     </dependency> -->
129         <!-- To run websockets in embedded server -->
130         <!-- <dependency> -->
131         <!-- <groupId>org.eclipse.jetty.websocket</groupId> -->
132         <!-- <artifactId>websocket-server</artifactId> -->
133         <!-- <version>9.3.24.v20180605</version> -->
134         <!-- </dependency> -->
135         <!-- <dependency> -->
136         <!-- <groupId>org.eclipse.jetty.websocket</groupId> -->
137         <!-- <artifactId>websocket-server</artifactId> -->
138         <!-- <version>9.3.24.v20180605</version> -->
139         <!-- <scope>test</scope> -->
140         <!-- </dependency> -->
141   </dependencies>
142   <build>
143     <plugins>
144       <plugin>
145         <groupId>org.apache.maven.plugins</groupId>
146         <artifactId>maven-compiler-plugin</artifactId>
147         <configuration>
148           <source>1.8</source>
149           <target>1.8</target>
150         </configuration>
151       </plugin>
152     </plugins>
153
154   </build>
155 </project>