blob: cfd7867a9843e55e777260b41806493c0d8e0398 [file] [log] [blame]
Singal, Kapil (ks220y)c8b3f592021-05-10 13:48:00 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Update 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
23<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">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.features</groupId>
28 <artifactId>ccsdk-features</artifactId>
29 <version>1.2.0-SNAPSHOT</version>
30 <relativePath>../../</relativePath>
31 </parent>
32
33 <groupId>org.onap.ccsdk.features.lib</groupId>
34 <artifactId>network-prioritization</artifactId>
35
36 <name>ccsdk-features :: lib :: ${project.artifactId}</name>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.core</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.commons</groupId>
45 <artifactId>commons-lang3</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>com.fasterxml.jackson.core</groupId>
49 <artifactId>jackson-databind</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-api</artifactId>
54 </dependency>
55 <!-- Use SimpleLogger as the slf4j implementation in test -->
56 <dependency>
57 <groupId>org.slf4j</groupId>
58 <artifactId>slf4j-log4j12</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>log4j</groupId>
63 <artifactId>log4j</artifactId>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.mockito</groupId>
73 <artifactId>mockito-core</artifactId>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77</project>