Create VES client example for domain 'notification'
[oam.git] / features / devicemanager / g-ran / ru-fh / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ O-RAN-SC : 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.o-ran-sc.oam.features.parent</groupId>
29         <artifactId>binding-parent</artifactId>
30         <version>2.0.0-SNAPSHOT</version>
31         <relativePath/>
32     </parent>
33
34     <groupId>org.o-ran-sc.oam.features.devicemanager</groupId>
35     <artifactId>devicemanager-gran-ru-fh-provider</artifactId>
36     <version>1.0.0-SNAPSHOT</version>
37     <packaging>bundle</packaging>
38
39     <name>o-ran-sc-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         <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
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     </properties>
53
54     <dependencies>
55         <!-- begin for testing -->
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <!-- end for testing -->
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>devicemanager-gran-ru-fh-model</artifactId>
65             <version>${project.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
69             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
70             <version>${project.version}</version><!--$NO-MVN-MAN-VER$-->
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
75             <artifactId>sdnr-wt-devicemanager-model</artifactId>
76             <version>${project.version}</version><!--$NO-MVN-MAN-VER$-->
77             <scope>provided</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
81             <artifactId>sdnr-wt-common</artifactId>
82             <version>${project.version}</version>
83             <scope>provided</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.osgi</groupId>
87             <artifactId>org.osgi.core</artifactId>
88             <scope>provided</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.netconf</groupId>
92             <artifactId>sal-netconf-connector</artifactId>
93             <scope>provided</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
97             <artifactId>rfc6991-ietf-yang-types</artifactId>
98             <scope>provided</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.mdsal</groupId>
102             <artifactId>yang-binding</artifactId>
103             <scope>provided</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.mdsal</groupId>
107             <artifactId>mdsal-singleton-common-api</artifactId>
108             <scope>provided</scope>
109         </dependency>
110     </dependencies>
111
112     <build>
113         <resources>
114             <resource>
115                 <directory>src/main/resources</directory>
116                 <filtering>true</filtering>
117             </resource>
118         </resources>
119         <plugins>
120             <plugin>
121                 <groupId>org.jacoco</groupId>
122                 <artifactId>jacoco-maven-plugin</artifactId>
123                 <configuration>
124                     <excludes>
125                         <exclude>**/gen/**</exclude>
126                         <exclude>**/generated-sources/**</exclude>
127                         <exclude>**/yang-gen-sal/**</exclude>
128                         <exclude>**/pax/**</exclude>
129                     </excludes>
130                 </configuration>
131             </plugin>
132         </plugins>
133     </build>
134     
135     <repositories>
136     <repository>
137       <id>onap-public</id>
138       <url>https://nexus.onap.org/content/groups/public/</url>
139       <releases>
140         <enabled>true</enabled>
141         <updatePolicy>never</updatePolicy>
142       </releases>
143       <snapshots>
144         <enabled>true</enabled>
145         <updatePolicy>always</updatePolicy>
146       </snapshots>
147     </repository>
148     <repository>
149       <id>onap-staging</id>
150       <url>https://nexus.onap.org/content/groups/staging/</url>
151       <releases>
152         <enabled>true</enabled>
153         <updatePolicy>never</updatePolicy>
154       </releases>
155       <snapshots>
156         <enabled>true</enabled>
157         <updatePolicy>always</updatePolicy>
158       </snapshots>
159     </repository>
160     <repository>
161       <id>ecomp-release</id>
162       <name>onap-repository-releases</name>
163       <url>https://nexus.onap.org/content/repositories/releases/</url>
164       <releases>
165         <enabled>true</enabled>
166         <updatePolicy>never</updatePolicy>
167       </releases>
168       <snapshots>
169         <enabled>false</enabled>
170       </snapshots>
171     </repository>
172     <repository>
173       <id>ecomp-snapshot</id>
174       <name>onap-repository-snapshots</name>
175       <url>https://nexus.onap.org/content/repositories/snapshots/</url>
176       <releases>
177         <enabled>false</enabled>
178       </releases>
179       <snapshots>
180         <enabled>true</enabled>
181       </snapshots>
182     </repository>
183   </repositories>
184   
185 </project>