blob: d120276e1e176cff0774e0048ba0db3391e7827c [file] [log] [blame]
shabs202040121bf2020-07-30 12:09:39 +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 ~ Licensed under the Apache License, Version 2.0 (the "License");
10 ~ you may not use this file except in compliance with the License.
11 ~ You may obtain a copy of the License at
12 ~
13 ~ http://www.apache.org/licenses/LICENSE-2.0
14 ~
15 ~ Unless required by applicable law or agreed to in writing, software
16 ~ distributed under the License is distributed on an "AS IS" BASIS,
17 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 ~ See the License for the specific language governing permissions and
19 ~ limitations under the License.
20 ~ ============LICENSE_END=======================================================
21 ~
22 -->
23
Dan Timoney92037092020-08-06 15:28:15 -040024<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">
shabs202040121bf2020-07-30 12:09:39 +020025 <modelVersion>4.0.0</modelVersion>
26
27 <parent>
28 <groupId>org.onap.ccsdk.parent</groupId>
29 <artifactId>binding-parent</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040030 <version>2.0.1-SNAPSHOT</version>
shabs202040121bf2020-07-30 12:09:39 +020031 <relativePath/>
32 </parent>
33
34 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35 <artifactId>sdnr-wt-devicemanager-openroadm-provider</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040036 <version>1.0.1-SNAPSHOT</version>
shabs202040121bf2020-07-30 12:09:39 +020037 <packaging>bundle</packaging>
38
39 <name>ccsdk-features :: ${project.artifactId}</name>
40 <licenses>
41 <license>
42 <name>Apache License, Version 2.0</name>
43 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
44 </license>
45 </licenses>
46
47 <properties>
48 <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
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 </properties>
53
54 <dependencies>
55 <!-- begin for testing -->
56 <dependency>
57 <groupId>org.mockito</groupId>
58 <artifactId>mockito-core</artifactId>
59 <version>2.28.2</version>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <artifactId>byte-buddy</artifactId>
64 <groupId>net.bytebuddy</groupId>
65 <version>1.9.10</version>
66 <scope>test</scope>
67 </dependency>
68
69 <!-- end for testing -->
70 <dependency>
71 <groupId>${project.groupId}</groupId>
72 <artifactId>sdnr-wt-devicemanager-openroadm-model</artifactId>
73 <version>${project.version}</version>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
78 <artifactId>sdnr-wt-devicemanager-model</artifactId>
79 <version>${project.version}</version>
80 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>${project.groupId}</groupId>
84 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
85 <version>${project.version}</version>
86 <scope>provided</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.opendaylight.netconf</groupId>
90 <artifactId>sal-netconf-connector</artifactId>
91 <scope>provided</scope>
92 </dependency>
93 </dependencies>
94
95 <build>
96 <resources>
97 <resource>
98 <directory>src/main/resources</directory>
99 <filtering>true</filtering>
100 </resource>
101 </resources>
102 <plugins>
103 <plugin>
104 <groupId>org.jacoco</groupId>
105 <artifactId>jacoco-maven-plugin</artifactId>
106 <configuration>
107 <excludes>
108 <exclude>**/gen/**</exclude>
109 <exclude>**/generated-sources/**</exclude>
110 <exclude>**/yang-gen-sal/**</exclude>
111 <exclude>**/pax/**</exclude>
112 </excludes>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
117</project>