cd16c91051195227d74c61232a4145e2708e7505
[ccsdk/features.git] / sdnr / wt / devicemanager-o-ran-sc / o-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>2.3.3</version>
33         <relativePath/>
34     </parent>
35
36     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37     <artifactId>sdnr-wt-devicemanager-o-ran-sc-oran-provider</artifactId>
38     <version>1.4.0-SNAPSHOT</version>
39     <packaging>bundle</packaging>
40
41     <name>ccsdk-features :: ${project.artifactId}</name>
42     <licenses>
43         <license>
44             <name>Apache License, Version 2.0</name>
45             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46         </license>
47     </licenses>
48
49     <properties>
50         <maven.javadoc.skip>true</maven.javadoc.skip>
51         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
52         <buildtime>${maven.build.timestamp} UTC</buildtime>
53         <databaseport>49400</databaseport>
54     </properties>
55
56     <dependencies>
57         <!-- begin for testing -->
58         <dependency>
59             <groupId>org.mockito</groupId>
60             <artifactId>mockito-core</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>sdnr-wt-devicemanager-core-provider</artifactId>
66             <version>${project.version}</version>
67             <scope>test</scope>
68         </dependency>
69         <!-- end for testing -->
70         <dependency>
71             <groupId>org.json</groupId>
72             <artifactId>json</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>sdnr-wt-devicemanager-o-ran-sc-oran-model</artifactId>
77             <version>${project.version}</version>
78             <scope>provided</scope>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
83             <version>${project.version}</version>
84             <scope>provided</scope>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
89             <version>${project.version}</version>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.netconf</groupId>
94             <artifactId>sal-netconf-connector</artifactId>
95             <scope>provided</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.netconf</groupId>
99             <artifactId>callhome-model</artifactId>
100             <!-- <scope>provided</scope> -->
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-singleton-common-api</artifactId>
105             <scope>provided</scope>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>rfc7317-ietf-system</artifactId>
110             <version>${project.version}</version>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>onap-system</artifactId>
115             <version>${project.version}</version>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <resources>
121             <resource>
122                 <directory>src/main/resources</directory>
123                 <filtering>true</filtering>
124             </resource>
125         </resources>
126         <pluginManagement>
127             <plugins>
128                 <plugin>
129                     <groupId>org.opendaylight.yangtools</groupId>
130                     <artifactId>yang-maven-plugin</artifactId>
131                     <version>7.0.9</version>
132                     <executions>
133                         <execution>
134                             <id>binding</id>
135                             <phase>none</phase>
136                             <goals>
137                                 <goal>generate-sources</goal>
138                             </goals>
139                             <configuration>
140                                 <inspectDependencies>true</inspectDependencies>
141                             </configuration>
142                         </execution>
143                     </executions>
144                 </plugin>
145             </plugins>
146         </pluginManagement>
147         <plugins>
148             <plugin>
149                 <groupId>org.jacoco</groupId>
150                 <artifactId>jacoco-maven-plugin</artifactId>
151                 <configuration>
152                     <excludes>
153                         <exclude>**/gen/**</exclude>
154                         <exclude>**/generated-sources/**</exclude>
155                         <exclude>**/yang-gen-sal/**</exclude>
156                         <exclude>**/pax/**</exclude>
157                     </excludes>
158                 </configuration>
159             </plugin>
160         </plugins>
161     </build>
162 </project>