d257cd9b3a083ac17d0a45484aebdf8ce095b001
[ccsdk/features.git] / sdnr / wt / devicemanager-openroadm / provider / pom.xml
1 <?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
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25     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>
31         <version>2.0.0-SNAPSHOT</version>
32         <relativePath/>
33     </parent>
34
35     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36     <artifactId>sdnr-wt-devicemanager-openroadm-provider</artifactId>
37     <version>1.0.0-SNAPSHOT</version>
38     <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         <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
50         <maven.javadoc.skip>true</maven.javadoc.skip>
51         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
52         <buildtime>${maven.build.timestamp} UTC</buildtime>
53     </properties>
54
55     <dependencies>
56         <!-- begin for testing -->
57         <dependency>
58             <groupId>org.mockito</groupId>
59             <artifactId>mockito-core</artifactId>
60             <version>2.28.2</version>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <artifactId>byte-buddy</artifactId>
65             <groupId>net.bytebuddy</groupId>
66             <version>1.9.10</version>
67             <scope>test</scope>
68         </dependency>
69
70         <!-- end for testing -->
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>sdnr-wt-devicemanager-openroadm-model</artifactId>
74             <version>${project.version}</version>
75             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
79             <artifactId>sdnr-wt-devicemanager-model</artifactId>
80             <version>${project.version}</version>
81             <scope>provided</scope>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
86             <version>${project.version}</version>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>sal-netconf-connector</artifactId>
92             <scope>provided</scope>
93         </dependency>
94     </dependencies>
95
96     <build>
97         <resources>
98             <resource>
99                 <directory>src/main/resources</directory>
100                 <filtering>true</filtering>
101             </resource>
102         </resources>
103         <plugins>
104             <plugin>
105                 <groupId>org.jacoco</groupId>
106                 <artifactId>jacoco-maven-plugin</artifactId>
107                 <configuration>
108                     <excludes>
109                         <exclude>**/gen/**</exclude>
110                         <exclude>**/generated-sources/**</exclude>
111                         <exclude>**/yang-gen-sal/**</exclude>
112                         <exclude>**/pax/**</exclude>
113                     </excludes>
114                 </configuration>
115             </plugin>
116         </plugins>
117     </build>
118 </project>