Use latest released parent pom
[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
24 <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">
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.ccsdk.parent</groupId>
29         <artifactId>binding-parent</artifactId>
30         <version>2.4.4</version>
31         <relativePath/>
32     </parent>
33
34     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35     <artifactId>sdnr-wt-devicemanager-onap-openroadm-provider</artifactId>
36     <version>1.4.1-SNAPSHOT</version>
37     <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         <maven.javadoc.skip>true</maven.javadoc.skip>
49         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
50         <buildtime>${maven.build.timestamp} UTC</buildtime>
51     </properties>
52
53     <dependencies>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>ietf-alarms</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
67             <version>${project.version}</version>
68             <scope>provided</scope>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>sdnr-wt-data-provider-model</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-common</artifactId>
85             <version>${project.version}</version>
86             <scope>provided</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
91             <version>${project.version}</version>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.netconf</groupId>
96             <artifactId>sal-netconf-connector</artifactId>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.osgi</groupId>
101             <artifactId>org.osgi.core</artifactId>
102             <scope>provided</scope>
103         </dependency>
104          <!-- begin for testing -->
105         <dependency>
106             <groupId>org.mockito</groupId>
107             <artifactId>mockito-core</artifactId>
108             <version>3.2.4</version>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <artifactId>byte-buddy</artifactId>
113             <groupId>net.bytebuddy</groupId>
114             <scope>test</scope>
115         </dependency>
116         <!-- end for testing -->
117     </dependencies>
118
119     <build>
120         <resources>
121             <resource>
122                 <directory>src/main/resources</directory>
123                 <filtering>true</filtering>
124             </resource>
125         </resources>
126         <plugins>
127             <plugin>
128                 <groupId>org.jacoco</groupId>
129                 <artifactId>jacoco-maven-plugin</artifactId>
130                 <configuration>
131                     <excludes>
132                         <exclude>**/gen/**</exclude>
133                         <exclude>**/generated-sources/**</exclude>
134                         <exclude>**/yang-gen-sal/**</exclude>
135                         <exclude>**/pax/**</exclude>
136                     </excludes>
137                 </configuration>
138             </plugin>
139         </plugins>
140     </build>
141 </project>