blob: f85121b1e72a1d224f317ee612dc8a140863e475 [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>
Ravi Pendurty6b8e4f12023-03-02 12:06:07 +053031 <version>2.5.4-SNAPSHOT</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-adapter-manager-provider</artifactId>
Dan Timoneyd944abf2023-03-02 07:29:48 -050037 <version>1.5.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-adapter-manager-model</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
Ravi Pendurty34fe8412021-08-02 09:13:49 +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>${project.groupId}</groupId>
Michael Dürre25423c52022-07-20 09:32:50 +020077 <artifactId>sdnr-wt-data-provider-model</artifactId>
78 <version>${project.version}</version>
79 <scope>provided</scope>
80 </dependency>
81 <dependency>
82 <groupId>${project.groupId}</groupId>
83 <artifactId>sdnr-wt-websocketmanager-model</artifactId>
84 <version>${project.version}</version>
85 <scope>provided</scope>
86 </dependency>
87 <dependency>
88 <groupId>${project.groupId}</groupId>
Ravi Pendurty05fe1142021-04-19 12:46:16 +020089 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
90 <version>${project.version}</version>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
Michael Dürre25423c52022-07-20 09:32:50 +020094 <groupId>${project.groupId}</groupId>
95 <artifactId>sdnr-wt-common</artifactId>
96 <version>${project.version}</version>
97 <scope>provided</scope>
98 </dependency>
99 <dependency>
Ravi Pendurty05fe1142021-04-19 12:46:16 +0200100 <groupId>org.opendaylight.netconf</groupId>
101 <artifactId>sal-netconf-connector</artifactId>
102 <scope>provided</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.opendaylight.mdsal</groupId>
106 <artifactId>mdsal-singleton-common-api</artifactId>
107 <scope>provided</scope>
108 </dependency>
109 </dependencies>
110
111 <build>
112 <resources>
113 <resource>
114 <directory>src/main/resources</directory>
115 <filtering>true</filtering>
116 </resource>
117 </resources>
118 <plugins>
119 <plugin>
120 <groupId>org.jacoco</groupId>
121 <artifactId>jacoco-maven-plugin</artifactId>
122 <configuration>
123 <excludes>
124 <exclude>**/gen/**</exclude>
125 <exclude>**/generated-sources/**</exclude>
126 <exclude>**/yang-gen-sal/**</exclude>
127 <exclude>**/pax/**</exclude>
128 </excludes>
129 </configuration>
130 </plugin>
131 </plugins>
132 </build>
133</project>