a8f09f30b97abc7c68e0e19860cd7623252288f6
[ccsdk/features.git] / sdnr / wt / devicemanager-onap / openroadm71 / 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.4</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
34     <artifactId>sdnr-wt-devicemanager-onap-openroadm71-provider</artifactId>
35     <version>1.5.1-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>sdnr-wt-devicemanager-onap-openroadm71-model</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
61             <version>${project.version}</version>
62             <scope>provided</scope>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>sdnr-wt-data-provider-model</artifactId>
67             <version>${project.version}</version>
68             <scope>provided</scope>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>sdnr-wt-common</artifactId>
73             <version>${project.version}</version>
74             <scope>provided</scope>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>sdnr-wt-websocketmanager-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         <dependency>
94             <groupId>org.osgi</groupId>
95             <artifactId>org.osgi.core</artifactId>
96             <scope>provided</scope>
97         </dependency>
98         <!-- begin for testing -->
99         <dependency>
100             <groupId>org.mockito</groupId>
101             <artifactId>mockito-core</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <artifactId>byte-buddy</artifactId>
106             <groupId>net.bytebuddy</groupId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
111             <artifactId>sdnr-wt-yang-utils</artifactId>
112             <version>${project.version}</version>
113             <scope>compile</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>