blob: 28f3a5556e5f05a03ffee17cc72bedf27c67d92e [file] [log] [blame]
herbert149a57e2020-01-30 12:08:35 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2019 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 -->
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050025<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">
herbert149a57e2020-01-30 12:08:35 +010026 <modelVersion>4.0.0</modelVersion>
27
28 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Dan Timoney24383fb2021-05-04 13:52:45 -040031 <version>2.1.4</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050032 <relativePath/>
herbert149a57e2020-01-30 12:08:35 +010033 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-devicemanager-onf-provider</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040037 <version>1.1.5-SNAPSHOT</version>
herbert149a57e2020-01-30 12:08:35 +010038 <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>
herbert149a57e2020-01-30 12:08:35 +010049 <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 </properties>
53
54 <dependencies>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050055 <!-- begin for testing -->
herbert149a57e2020-01-30 12:08:35 +010056 <dependency>
57 <groupId>org.mockito</groupId>
58 <artifactId>mockito-core</artifactId>
59 <scope>test</scope>
60 </dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010061
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050062 <!-- end for testing -->
herbert149a57e2020-01-30 12:08:35 +010063 <dependency>
64 <groupId>${project.groupId}</groupId>
65 <artifactId>sdnr-wt-devicemanager-onf-model</artifactId>
66 <version>${project.version}</version>
67 <scope>provided</scope>
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 </dependencies>
87
88 <build>
89 <resources>
90 <resource>
91 <directory>src/main/resources</directory>
92 <filtering>true</filtering>
93 </resource>
94 </resources>
95 <plugins>
96 <plugin>
97 <groupId>org.jacoco</groupId>
98 <artifactId>jacoco-maven-plugin</artifactId>
99 <configuration>
100 <excludes>
101 <exclude>**/gen/**</exclude>
102 <exclude>**/generated-sources/**</exclude>
103 <exclude>**/yang-gen-sal/**</exclude>
104 <exclude>**/pax/**</exclude>
105 </excludes>
106 </configuration>
107 </plugin>
herbert149a57e2020-01-30 12:08:35 +0100108 </plugins>
109 </build>
110</project>