herbert | 2cf702d | 2019-12-14 00:36:01 +0100 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : CCSDK / SDNR / WT / netconfnode-state-service |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All |
| 7 | rights reserved. |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 10 | use this file except in compliance with the License. You may obtain a copy |
| 11 | of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 12 | by applicable law or agreed to in writing, software distributed under the |
| 13 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 14 | OF ANY KIND, either express or implied. See the License for the specific |
| 15 | language governing permissions and limitations under the License. |
| 16 | ============LICENSE_END========================================================= |
| 17 | --> |
| 18 | <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"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 22 | <artifactId>sdnr-wt-netconfnode-state-service-provider</artifactId> |
| 23 | <version>0.7.0-SNAPSHOT</version> |
| 24 | <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name> |
| 25 | <packaging>bundle</packaging> |
| 26 | |
| 27 | <parent> |
| 28 | <groupId>org.onap.ccsdk.parent</groupId> |
| 29 | <artifactId>binding-parent</artifactId> |
| 30 | <version>1.5.1-SNAPSHOT</version> |
| 31 | <relativePath/> |
| 32 | </parent> |
| 33 | |
| 34 | <properties> |
| 35 | <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration --> |
| 36 | <maven.javadoc.skip>true</maven.javadoc.skip> |
| 37 | <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> |
| 38 | <buildtime>${maven.build.timestamp} UTC</buildtime> |
| 39 | </properties> |
| 40 | |
| 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 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.opendaylight.netconf</groupId> |
| 51 | <artifactId>sal-netconf-connector</artifactId> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.opendaylight.mdsal</groupId> |
| 56 | <artifactId>mdsal-singleton-common-api</artifactId> |
| 57 | <scope>provided</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>com.typesafe.akka</groupId> |
| 61 | <artifactId>akka-actor_2.12</artifactId> |
| 62 | <scope>provided</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>com.typesafe.akka</groupId> |
| 66 | <artifactId>akka-cluster_2.12</artifactId> |
| 67 | <scope>provided</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>${project.groupId}</groupId> |
| 71 | <artifactId>sdnr-wt-common</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | <scope>provided</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>${project.groupId}</groupId> |
| 77 | <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | </dependency> |
| 80 | </dependencies> |
| 81 | <build> |
| 82 | <resources> |
| 83 | <resource> |
| 84 | <directory>src/main/resources</directory> |
| 85 | <filtering>true</filtering> |
| 86 | </resource> |
| 87 | </resources> |
| 88 | </build> |
| 89 | </project> |
| 90 | |