dcb2543ca73cab78542934f68cc9d10acec74955
[ccsdk/features.git] / lib / network-prioritization / pom.xml
1 <?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 <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">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.ccsdk.features</groupId>
27         <artifactId>ccsdk-features</artifactId>
28         <version>1.3.1-SNAPSHOT</version>
29         <relativePath>../../</relativePath>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.lib</groupId>
33     <artifactId>network-prioritization</artifactId>
34
35     <name>ccsdk-features :: lib :: ${project.artifactId}</name>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.core</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.apache.commons</groupId>
44             <artifactId>commons-lang3</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.fasterxml.jackson.core</groupId>
48             <artifactId>jackson-databind</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.slf4j</groupId>
52             <artifactId>slf4j-api</artifactId>
53         </dependency>
54         <!-- Use SimpleLogger as the slf4j implementation in test -->
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-log4j12</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>log4j</groupId>
62             <artifactId>log4j</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-core</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76 </project>