Merge "update helpserver"
[ccsdk/features.git] / sdnr / wt / netconfnode-state-service / provider / pom.xml
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   <parent>
22     <groupId>org.onap.ccsdk.parent</groupId>
23     <artifactId>binding-parent</artifactId>
24     <version>1.5.2-SNAPSHOT</version>
25     <relativePath/>
26   </parent>
27
28   <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
29   <artifactId>sdnr-wt-netconfnode-state-service-provider</artifactId>
30   <version>0.7.1-SNAPSHOT</version>
31   <packaging>bundle</packaging>
32
33   <name>ccsdk-features :: ${project.artifactId}</name>
34   <licenses>
35     <license>
36       <name>Apache License, Version 2.0</name>
37       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
38     </license>
39   </licenses>
40
41   <properties>
42     <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
43     <maven.javadoc.skip>true</maven.javadoc.skip>
44     <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
45     <buildtime>${maven.build.timestamp} UTC</buildtime>
46   </properties>
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
82   <build>
83     <resources>
84       <resource>
85         <directory>src/main/resources</directory>
86         <filtering>true</filtering>
87       </resource>
88     </resources>
89    </build>
90 </project>