blob: 5568faa7bcdcb9d65620dafecae2d365d4574e07 [file] [log] [blame]
Ravi Pendurty05fe1142021-04-19 12:46:16 +02001<?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 ~ 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 -->
Ravi Pendurty05fe1142021-04-19 12:46:16 +020025<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">
26 <modelVersion>4.0.0</modelVersion>
27
28 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Dan Timoneyc7f07d72021-08-31 12:51:29 -040031 <version>2.2.0</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020032 <relativePath/>
33 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-devicemanager-onap-onf14-provider</artifactId>
Dan Timoneyc7f07d72021-08-31 12:51:29 -040037 <version>1.2.1-SNAPSHOT</version>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020038 <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>
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-onap-onf14-model</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
Ravi Pendurty6b0b73e2021-08-18 21:02:36 +053070 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020071 <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
72 <version>${project.version}</version>
73 <scope>provided</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.opendaylight.mdsal</groupId>
77 <artifactId>mdsal-binding-dom-codec-api</artifactId>
78 <scope>provided</scope>
79 </dependency>
80 <dependency>
81 <groupId>${project.groupId}</groupId>
82 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
83 <version>${project.version}</version>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.opendaylight.netconf</groupId>
88 <artifactId>sal-netconf-connector</artifactId>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.opendaylight.mdsal</groupId>
93 <artifactId>mdsal-singleton-common-api</artifactId>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
98 <artifactId>rfc6991-ietf-yang-types</artifactId>
99 <scope>provided</scope>
100 </dependency>
101 </dependencies>
102
103 <build>
104 <resources>
105 <resource>
106 <directory>src/main/resources</directory>
107 <filtering>true</filtering>
108 </resource>
109 </resources>
110 <plugins>
111 <plugin>
112 <groupId>org.jacoco</groupId>
113 <artifactId>jacoco-maven-plugin</artifactId>
114 <configuration>
115 <excludes>
116 <exclude>**/gen/**</exclude>
117 <exclude>**/generated-sources/**</exclude>
118 <exclude>**/yang-gen-sal/**</exclude>
119 <exclude>**/pax/**</exclude>
120 </excludes>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
125</project>