2e5ffac6a11fac740c4757144e6123b1514d2aba
[oam.git] / features / devicemanager / x-ran / ru-fh / 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   ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10   ~ ================================================================================
11   ~ Licensed under the Apache License, Version 2.0 (the "License");
12   ~ you may not use this file except in compliance with the License.
13   ~ You may obtain a copy of the License at
14   ~
15   ~     http://www.apache.org/licenses/LICENSE-2.0
16   ~
17   ~ Unless required by applicable law or agreed to in writing, software
18   ~ distributed under the License is distributed on an "AS IS" BASIS,
19   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   ~ See the License for the specific language governing permissions and
21   ~ limitations under the License.
22   ~ ============LICENSE_END=======================================================
23   ~
24   -->
25
26 <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">
27     <modelVersion>4.0.0</modelVersion>
28
29     <parent>
30         <groupId>org.onap.ccsdk.parent</groupId>
31         <artifactId>binding-parent</artifactId>
32         <version>1.5.2-SNAPSHOT</version>
33         <relativePath/>
34     </parent>
35
36     <groupId>org.o-ran-sc.oam.features.devicemanager</groupId>
37     <artifactId>devicemanager-xran-ru-fh-provider</artifactId>
38     <version>0.7.1-SNAPSHOT</version>
39     <packaging>bundle</packaging>
40
41     <name>o-ran-sc-features :: ${project.artifactId}</name>
42
43     <licenses>
44         <license>
45             <name>Apache License, Version 2.0</name>
46             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
47         </license>
48     </licenses>
49
50     <properties>
51         <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
52         <maven.javadoc.skip>true</maven.javadoc.skip>
53         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
54         <buildtime>${maven.build.timestamp} UTC</buildtime>
55         <databaseport>49400</databaseport>
56     </properties>
57
58     <dependencies>
59         <!-- begin for testing -->
60         <dependency>
61             <groupId>org.mockito</groupId>
62             <artifactId>mockito-core</artifactId>
63             <scope>test</scope>
64         </dependency>
65
66         <!-- end for testing -->
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>devicemanager-xran-ru-fh-model</artifactId>
70             <version>${project.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
74             <artifactId>sdnr-wt-devicemanager-model</artifactId>
75             <version>${project.version}</version>
76             <scope>provided</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
80             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
81             <version>${project.version}</version>
82             <scope>provided</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.netconf</groupId>
86             <artifactId>sal-netconf-connector</artifactId>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-singleton-common-api</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>