blob: d995a47369baffcfcccebf8f36a274401a0d502b [file] [log] [blame]
Ravi Pendurty7a804622020-08-19 16:33:48 +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 Pendurty7a804622020-08-19 16:33:48 +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 Timoney24383fb2021-05-04 13:52:45 -040031 <version>2.1.4</version>
Ravi Pendurty7a804622020-08-19 16:33:48 +020032 <relativePath/>
33 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-devicemanager-adapter-manager-provider</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040037 <version>1.1.5-SNAPSHOT</version>
Ravi Pendurty7a804622020-08-19 16:33:48 +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>
Ravi Pendurty7a804622020-08-19 16:33:48 +020049 <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-adapter-manager-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 </dependencies>
92
93 <build>
94 <resources>
95 <resource>
96 <directory>src/main/resources</directory>
97 <filtering>true</filtering>
98 </resource>
99 </resources>
100 <plugins>
101 <plugin>
102 <groupId>org.jacoco</groupId>
103 <artifactId>jacoco-maven-plugin</artifactId>
104 <configuration>
105 <excludes>
106 <exclude>**/gen/**</exclude>
107 <exclude>**/generated-sources/**</exclude>
108 <exclude>**/yang-gen-sal/**</exclude>
109 <exclude>**/pax/**</exclude>
110 </excludes>
111 </configuration>
112 </plugin>
113 </plugins>
114 </build>
115</project>