1aa5bb34c77d124e7ba0ec6079f7470bdb8f53a2
[ccsdk/features.git] / sdnr / wt / devicemanager-onap / 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 <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">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.ccsdk.parent</groupId>
28         <artifactId>binding-parent</artifactId>
29         <version>2.5.1</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
34     <artifactId>sdnr-wt-devicemanager-onap-openroadm-provider</artifactId>
35     <version>1.5.0-SNAPSHOT</version>
36     <packaging>bundle</packaging>
37
38     <name>ccsdk-features :: ${project.artifactId}</name>
39     <licenses>
40         <license>
41             <name>Apache License, Version 2.0</name>
42             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
43         </license>
44     </licenses>
45
46     <properties>
47         <maven.javadoc.skip>true</maven.javadoc.skip>
48         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
49         <buildtime>${maven.build.timestamp} UTC</buildtime>
50     </properties>
51
52     <dependencies>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>ietf-alarms</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
66             <version>${project.version}</version>
67             <scope>provided</scope>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>sdnr-wt-data-provider-model</artifactId>
72             <version>${project.version}</version>
73             <scope>provided</scope>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>sdnr-wt-websocketmanager-model</artifactId>
78             <version>${project.version}</version>
79             <scope>provided</scope>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>sdnr-wt-common</artifactId>
84             <version>${project.version}</version>
85             <scope>provided</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
90             <version>${project.version}</version>
91             <scope>provided</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.netconf</groupId>
95             <artifactId>sal-netconf-connector</artifactId>
96             <scope>provided</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.osgi</groupId>
100             <artifactId>org.osgi.core</artifactId>
101             <scope>provided</scope>
102         </dependency>
103          <!-- begin for testing -->
104         <dependency>
105             <groupId>org.mockito</groupId>
106             <artifactId>mockito-core</artifactId>
107             <version>3.2.4</version>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <artifactId>byte-buddy</artifactId>
112             <groupId>net.bytebuddy</groupId>
113             <scope>test</scope>
114         </dependency>
115         <!-- end for testing -->
116     </dependencies>
117
118     <build>
119         <resources>
120             <resource>
121                 <directory>src/main/resources</directory>
122                 <filtering>true</filtering>
123             </resource>
124         </resources>
125         <plugins>
126             <plugin>
127                 <groupId>org.jacoco</groupId>
128                 <artifactId>jacoco-maven-plugin</artifactId>
129                 <configuration>
130                     <excludes>
131                         <exclude>**/gen/**</exclude>
132                         <exclude>**/generated-sources/**</exclude>
133                         <exclude>**/yang-gen-sal/**</exclude>
134                         <exclude>**/pax/**</exclude>
135                     </excludes>
136                 </configuration>
137             </plugin>
138         </plugins>
139     </build>
140 </project>