Resolve dependency issue
[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.3.3</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.4.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         <!-- begin for testing -->
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <version>2.28.2</version>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <artifactId>byte-buddy</artifactId>
62             <groupId>net.bytebuddy</groupId>
63             <version>1.9.10</version>
64             <scope>test</scope>
65         </dependency>
66
67         <!-- end for testing -->
68             
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>ietf-alarms</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
82             <version>${project.version}</version>
83             <scope>provided</scope>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>sdnr-wt-data-provider-model</artifactId>
88             <version>${project.version}</version>
89             <scope>provided</scope>
90       </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
94             <version>${project.version}</version>
95             <scope>provided</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.netconf</groupId>
99             <artifactId>sal-netconf-connector</artifactId>
100             <scope>provided</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.osgi</groupId>
104             <artifactId>org.osgi.core</artifactId>
105             <scope>provided</scope>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <resources>
111             <resource>
112                 <directory>src/main/resources</directory>
113                 <filtering>true</filtering>
114             </resource>
115         </resources>
116         <plugins>
117             <plugin>
118                 <groupId>org.jacoco</groupId>
119                 <artifactId>jacoco-maven-plugin</artifactId>
120                 <configuration>
121                     <excludes>
122                         <exclude>**/gen/**</exclude>
123                         <exclude>**/generated-sources/**</exclude>
124                         <exclude>**/yang-gen-sal/**</exclude>
125                         <exclude>**/pax/**</exclude>
126                     </excludes>
127                 </configuration>
128             </plugin>
129         </plugins>
130     </build>
131 </project>