Herbert Eiselt | 316dbd6 | 2019-01-29 17:23:25 +0100 | [diff] [blame] | 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" |
| 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"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 18 | <artifactId>sdnr-wt-websocketmanager2-provider</artifactId> |
| 19 | <version>0.4.1-SNAPSHOT</version> |
| 20 | <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> |
| 25 | <version>1.2.1-SNAPSHOT</version> |
| 26 | <relativePath></relativePath> |
| 27 | </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 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>${project.groupId}</groupId> |
| 41 | <artifactId>sdnr-wt-websocketmanager2-model</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>javax.servlet</groupId> |
| 46 | <artifactId>servlet-api</artifactId> |
| 47 | <version>2.5</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.eclipse.jetty.websocket</groupId> |
| 51 | <artifactId>websocket-api</artifactId> |
| 52 | <version>9.3.21.v20170918</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.eclipse.jetty.websocket</groupId> |
| 56 | <artifactId>websocket-servlet</artifactId> |
| 57 | <version>9.3.21.v20170918</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>io.netty</groupId> |
| 61 | <artifactId>netty-transport</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>io.netty</groupId> |
| 65 | <artifactId>netty-all</artifactId> |
| 66 | <!-- <version>${netty.version}</version> --> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.json</groupId> |
| 70 | <artifactId>json</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>com.typesafe.akka</groupId> |
| 74 | <artifactId>akka-actor_2.12</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>com.typesafe.akka</groupId> |
| 78 | <artifactId>akka-cluster_2.12</artifactId> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.java-websocket</groupId> |
| 82 | <artifactId>Java-WebSocket</artifactId> |
| 83 | <version>1.3.8</version> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>org.mockito</groupId> |
| 87 | <artifactId>mockito-core</artifactId> |
| 88 | <!-- <version>2.23.4</version> --> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.opendaylight.controller</groupId> |
| 93 | <artifactId>sal-binding-api</artifactId> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.osgi</groupId> |
| 97 | <artifactId>org.osgi.core</artifactId> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.osgi</groupId> |
| 101 | <artifactId>org.osgi.compendium</artifactId> |
| 102 | </dependency> |
| 103 | </dependencies> |
| 104 | <build> |
| 105 | <plugins> |
| 106 | <plugin> |
| 107 | <groupId>org.apache.maven.plugins</groupId> |
| 108 | <artifactId>maven-compiler-plugin</artifactId> |
| 109 | <configuration> |
| 110 | <source>1.8</source> |
| 111 | <target>1.8</target> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
| 116 | </project> |