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