OAM NF Adopter SNMP Manager test code coverage
[oam/nf-oam-adopter.git] / ves-nf-oam-adopter / ves-nf-oam-adopter-snmp-manager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * ============LICENSE_START=======================================================
4 * O-RAN-SC
5 * ================================================================================
6 * Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 *
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          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</groupId>
29         <artifactId>ves-nf-oam-adopter-parent</artifactId>
30         <version>1.0.0-SNAPSHOT</version>
31         <relativePath>../ves-nf-oam-adopter-parent/pom.xml</relativePath>
32     </parent>
33
34     <artifactId>ves-nf-oam-adopter-snmp-manager</artifactId>
35
36     <dependencies>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>ves-nf-oam-adopter-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.github.spotbugs</groupId>
43             <artifactId>spotbugs-annotations</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.fasterxml.jackson.dataformat</groupId>
47             <artifactId>jackson-dataformat-yaml</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>com.fasterxml.jackson.core</groupId>
51             <artifactId>jackson-databind</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.fasterxml.jackson.core</groupId>
55             <artifactId>jackson-annotations</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.snmp4j</groupId>
59             <artifactId>snmp4j</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>io.reactivex.rxjava3</groupId>
63             <artifactId>rxjava</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.slf4j</groupId>
67             <artifactId>slf4j-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.springframework.boot</groupId>
71             <artifactId>spring-boot-starter</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.springframework.boot</groupId>
75             <artifactId>spring-boot-starter-validation</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.projectlombok</groupId>
79             <artifactId>lombok</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.apache.commons</groupId>
83             <artifactId>commons-configuration2</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>commons-io</groupId>
87             <artifactId>commons-io</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>commons-beanutils</groupId>
91             <artifactId>commons-beanutils</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.springframework.boot</groupId>
95             <artifactId>spring-boot-starter-test</artifactId>
96             <scope>test</scope>
97         </dependency>
98     </dependencies>
99 </project>