Herbert Eiselt | 316dbd6 | 2019-01-29 17:23:25 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 2 | <!-- |
| 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) | 9560e60 | 2019-04-24 16:04:56 -0400 | [diff] [blame] | 25 | <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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
Herbert Eiselt | b4d7ca8 | 2019-02-28 17:43:35 +0100 | [diff] [blame] | 27 | |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.ccsdk.parent</groupId> |
| 30 | <artifactId>binding-parent</artifactId> |
Dan Timoney | 122ea41 | 2023-03-30 20:34:47 -0400 | [diff] [blame] | 31 | <version>2.5.4</version> |
| 32 | <relativePath/> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 33 | </parent> |
| 34 | |
| 35 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 36 | <artifactId>sdnr-wt-websocketmanager-provider</artifactId> |
Dan Timoney | 37a0572 | 2023-06-06 06:55:17 -0400 | [diff] [blame^] | 37 | <version>1.6.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 38 | <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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 50 | </properties> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>${project.groupId}</groupId> |
Ravi Pendurty | 1d31880 | 2023-03-14 19:31:54 +0530 | [diff] [blame] | 54 | <artifactId>sdnr-wt-common</artifactId> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 55 | <version>${project.version}</version> |
Ravi Pendurty | 1d31880 | 2023-03-14 19:31:54 +0530 | [diff] [blame] | 56 | <scope>provided</scope> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
Ravi Pendurty | 1d31880 | 2023-03-14 19:31:54 +0530 | [diff] [blame] | 59 | <groupId>${project.groupId}</groupId> |
| 60 | <artifactId>sdnr-wt-websocketmanager-model</artifactId> |
| 61 | <version>${project.version}</version> |
Ravi Pendurty | 1761436 | 2021-05-25 18:57:29 +0530 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 64 | <groupId>${project.groupId}</groupId> |
| 65 | <artifactId>sdnr-wt-yang-utils</artifactId> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 66 | <version>${project.version}</version> |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 67 | <scope>provided</scope> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
Ravi Pendurty | 1d31880 | 2023-03-14 19:31:54 +0530 | [diff] [blame] | 70 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 71 | <artifactId>ietf-topology</artifactId> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 75 | <groupId>org.eclipse.jetty.websocket</groupId> |
| 76 | <artifactId>websocket-servlet</artifactId> |
Ravi Pendurty | 1d31880 | 2023-03-14 19:31:54 +0530 | [diff] [blame] | 77 | </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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 85 | </dependency> |
| 86 | <dependency> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 87 | <groupId>org.json</groupId> |
| 88 | <artifactId>json</artifactId> |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 89 | <scope>provided</scope> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 90 | </dependency> |
| 91 | <dependency> |
highstreetherbert | db9f267 | 2021-04-29 19:06:54 +0200 | [diff] [blame] | 92 | <groupId>com.typesafe</groupId> |
| 93 | <artifactId>config</artifactId> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 94 | <scope>provided</scope> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.java-websocket</groupId> |
| 98 | <artifactId>Java-WebSocket</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
Ravi Pendurty | f7cc6a1 | 2021-02-03 14:43:58 +0100 | [diff] [blame] | 101 | <groupId>org.opendaylight.mdsal</groupId> |
| 102 | <artifactId>mdsal-binding-api</artifactId> |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 103 | <scope>provided</scope> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 104 | </dependency> |
| 105 | <dependency> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 106 | <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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 116 | <groupId>org.osgi</groupId> |
| 117 | <artifactId>org.osgi.core</artifactId> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 118 | <scope>provided</scope> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.osgi</groupId> |
| 122 | <artifactId>org.osgi.compendium</artifactId> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 123 | <scope>provided</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
Michael Dürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 126 | <groupId>com.fasterxml.jackson.datatype</groupId> |
| 127 | <artifactId>jackson-datatype-jsr310</artifactId> |
| 128 | </dependency> |
| 129 | <dependency> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 130 | <groupId>org.mockito</groupId> |
| 131 | <artifactId>mockito-core</artifactId> |
| 132 | <scope>test</scope> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 133 | </dependency> |
| 134 | <dependency> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 135 | <groupId>${project.groupId}</groupId> |
Ravi Pendurty | 1761436 | 2021-05-25 18:57:29 +0530 | [diff] [blame] | 136 | <artifactId>sdnr-wt-devicemanager-core-provider</artifactId> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 137 | <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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 146 | </dependencies> |
Herbert Eiselt | 316dbd6 | 2019-01-29 17:23:25 +0100 | [diff] [blame] | 147 | </project> |