blob: d9cc7e617a2d1231e2f97d5c544a586b3c483426 [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 -->
25
26<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 +010027 <modelVersion>4.0.0</modelVersion>
28
29 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Dan Timoney253f57c2020-09-10 12:50:42 -040032 <version>2.1.0-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050033 <relativePath/>
herbert149a57e2020-01-30 12:08:35 +010034 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-devicemanager-onf-provider</artifactId>
Dan Timoney253f57c2020-09-10 12:50:42 -040038 <version>1.1.0-SNAPSHOT</version>
herbert149a57e2020-01-30 12:08:35 +010039 <packaging>bundle</packaging>
40
41 <name>ccsdk-features :: ${project.artifactId}</name>
42 <licenses>
43 <license>
44 <name>Apache License, Version 2.0</name>
45 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46 </license>
47 </licenses>
48
49 <properties>
50 <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
51 <maven.javadoc.skip>true</maven.javadoc.skip>
52 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
53 <buildtime>${maven.build.timestamp} UTC</buildtime>
54 </properties>
55
56 <dependencies>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050057 <!-- begin for testing -->
herbert149a57e2020-01-30 12:08:35 +010058 <dependency>
59 <groupId>org.mockito</groupId>
60 <artifactId>mockito-core</artifactId>
61 <scope>test</scope>
62 </dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010063
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050064 <!-- end for testing -->
herbert149a57e2020-01-30 12:08:35 +010065 <dependency>
66 <groupId>${project.groupId}</groupId>
67 <artifactId>sdnr-wt-devicemanager-onf-model</artifactId>
68 <version>${project.version}</version>
69 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
73 <artifactId>sdnr-wt-devicemanager-model</artifactId>
74 <version>${project.version}</version>
75 <scope>provided</scope>
76 </dependency>
77 <dependency>
78 <groupId>${project.groupId}</groupId>
79 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
80 <version>${project.version}</version>
81 <scope>provided</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.opendaylight.netconf</groupId>
85 <artifactId>sal-netconf-connector</artifactId>
86 <scope>provided</scope>
87 </dependency>
88 </dependencies>
89
90 <build>
91 <resources>
92 <resource>
93 <directory>src/main/resources</directory>
94 <filtering>true</filtering>
95 </resource>
96 </resources>
97 <plugins>
98 <plugin>
99 <groupId>org.jacoco</groupId>
100 <artifactId>jacoco-maven-plugin</artifactId>
101 <configuration>
102 <excludes>
103 <exclude>**/gen/**</exclude>
104 <exclude>**/generated-sources/**</exclude>
105 <exclude>**/yang-gen-sal/**</exclude>
106 <exclude>**/pax/**</exclude>
107 </excludes>
108 </configuration>
109 </plugin>
herbert149a57e2020-01-30 12:08:35 +0100110 </plugins>
111 </build>
112</project>