76d8048633d4959654474a0e68cf95a0dbf62112
[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.1</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.0-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         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>onap-system</artifactId>
120             <version>${project.version}</version>
121         </dependency>
122         <!-- begin for testing -->
123         <dependency>
124             <groupId>org.mockito</groupId>
125             <artifactId>mockito-core</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>${project.groupId}</groupId>
130             <artifactId>sdnr-wt-devicemanager-core-provider</artifactId>
131             <version>${project.version}</version>
132             <scope>test</scope>
133         </dependency>
134          <dependency>
135             <groupId>javax.servlet</groupId>
136             <artifactId>javax.servlet-api</artifactId>
137             <scope>test</scope>
138         </dependency>
139         <!-- end for testing -->
140         
141     </dependencies>
142
143     <build>
144         <resources>
145             <resource>
146                 <directory>src/main/resources</directory>
147                 <filtering>true</filtering>
148             </resource>
149         </resources>
150         <pluginManagement>
151             <plugins>
152                 <plugin>
153                     <groupId>org.opendaylight.yangtools</groupId>
154                     <artifactId>yang-maven-plugin</artifactId>
155                     <version>7.0.9</version>
156                     <executions>
157                         <execution>
158                             <id>binding</id>
159                             <phase>none</phase>
160                             <goals>
161                                 <goal>generate-sources</goal>
162                             </goals>
163                             <configuration>
164                                 <inspectDependencies>true</inspectDependencies>
165                             </configuration>
166                         </execution>
167                     </executions>
168                 </plugin>
169             </plugins>
170         </pluginManagement>
171         <plugins>
172             <plugin>
173                 <groupId>org.jacoco</groupId>
174                 <artifactId>jacoco-maven-plugin</artifactId>
175                 <configuration>
176                     <excludes>
177                         <exclude>**/gen/**</exclude>
178                         <exclude>**/generated-sources/**</exclude>
179                         <exclude>**/yang-gen-sal/**</exclude>
180                         <exclude>**/pax/**</exclude>
181                     </excludes>
182                 </configuration>
183             </plugin>
184         </plugins>
185     </build>
186 </project>