Herbert Eiselt | 316dbd6 | 2019-01-29 17:23:25 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ ONAP : ccsdk features |
| 5 | ~ ================================================================================ |
| 6 | ~ Copyright (C) 2018 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> |
| 27 | |
| 28 | <parent> |
| 29 | <groupId>org.onap.ccsdk.parent</groupId> |
| 30 | <artifactId>binding-parent</artifactId> |
Michael DÜrre | eb2a7c9 | 2022-03-10 10:39:16 +0100 | [diff] [blame^] | 31 | <version>2.3.3-SNAPSHOT</version> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 32 | <relativePath/> |
| 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-model</artifactId> |
Dan Timoney | 2cdb55c | 2021-09-21 13:13:39 -0400 | [diff] [blame] | 37 | <version>1.3.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> |
Ravi Pendurty | f7cc6a1 | 2021-02-03 14:43:58 +0100 | [diff] [blame] | 41 | |
| 42 | <properties> |
| 43 | <maven.javadoc.skip>true</maven.javadoc.skip> |
| 44 | </properties> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 45 | |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>org.opendaylight.mdsal</groupId> |
| 49 | <artifactId>mdsal-dom-api</artifactId> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId> |
| 54 | <artifactId>rfc6991-ietf-yang-types</artifactId> |
| 55 | <scope>provided</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
Ravi Pendurty | 1761436 | 2021-05-25 18:57:29 +0530 | [diff] [blame] | 58 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 59 | <artifactId>ietf-topology</artifactId> |
| 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
Michael DÜrre | f396900 | 2021-04-08 06:34:22 +0200 | [diff] [blame] | 63 | <groupId>com.fasterxml.jackson.core</groupId> |
| 64 | <artifactId>jackson-annotations</artifactId> |
| 65 | </dependency> |
| 66 | </dependencies> |
Herbert Eiselt | 316dbd6 | 2019-01-29 17:23:25 +0100 | [diff] [blame] | 67 | </project> |