blob: 47549d319c2505ebf8942deb90830d49818346c2 [file] [log] [blame]
alexs926eb802020-08-21 15:01:24 +03001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Licensed under the Apache License, Version 2.0 (the "License");
10 ~ you may not use this file except in compliance with the License.
11 ~ You may obtain a copy of the License at
12 ~
13 ~ http://www.apache.org/licenses/LICENSE-2.0
14 ~
15 ~ Unless required by applicable law or agreed to in writing, software
16 ~ distributed under the License is distributed on an "AS IS" BASIS,
17 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 ~ See the License for the specific language governing permissions and
19 ~ limitations under the License.
20 ~ ============LICENSE_END=======================================================
21 ~
22 -->
23
24<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">
25 <modelVersion>4.0.0</modelVersion>
26
27 <parent>
28 <groupId>org.onap.ccsdk.parent</groupId>
29 <artifactId>binding-parent</artifactId>
30 <version>2.0.1-SNAPSHOT</version>
31 <relativePath/>
32 </parent>
33
34 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35 <artifactId>sdnr-wt-devicemanager-onf14-provider</artifactId>
36 <version>1.0.1-SNAPSHOT</version>
37 <packaging>bundle</packaging>
38
39 <name>ccsdk-features :: ${project.artifactId}</name>
40 <licenses>
41 <license>
42 <name>Apache License, Version 2.0</name>
43 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
44 </license>
45 </licenses>
46
47 <properties>
48 <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
49 <maven.javadoc.skip>true</maven.javadoc.skip>
50 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
51 <buildtime>${maven.build.timestamp} UTC</buildtime>
52 <databaseport>49400</databaseport>
53 </properties>
54
55 <dependencies>
56 <!-- begin for testing -->
57 <dependency>
58 <groupId>org.mockito</groupId>
59 <artifactId>mockito-core</artifactId>
60 <scope>test</scope>
61 </dependency>
62
63 <!-- end for testing -->
64 <dependency>
65 <groupId>${project.groupId}</groupId>
66 <artifactId>sdnr-wt-devicemanager-onf14-model</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
71 <artifactId>sdnr-wt-devicemanager-model</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 <scope>provided</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.opendaylight.netconf</groupId>
83 <artifactId>sal-netconf-connector</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.opendaylight.mdsal</groupId>
88 <artifactId>mdsal-singleton-common-api</artifactId>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
93 <artifactId>rfc6991-ietf-yang-types</artifactId>
94 <scope>provided</scope>
95 </dependency>
96 </dependencies>
97
98 <build>
99 <resources>
100 <resource>
101 <directory>src/main/resources</directory>
102 <filtering>true</filtering>
103 </resource>
104 </resources>
105 <plugins>
106 <plugin>
107 <groupId>org.jacoco</groupId>
108 <artifactId>jacoco-maven-plugin</artifactId>
109 <configuration>
110 <excludes>
111 <exclude>**/gen/**</exclude>
112 <exclude>**/generated-sources/**</exclude>
113 <exclude>**/yang-gen-sal/**</exclude>
114 <exclude>**/pax/**</exclude>
115 </excludes>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120</project>