[DCAEGEN2] Vulnerability addressal for TCAgen2
[dcaegen2/analytics/tca-gen2.git] / eelf-logger / eelf-logger-logback-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ TCAgen2
5   ~ ================================================================================
6   ~ Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
7   ~ Copyright (c) 2021 Samsung Electronics. All rights reserved.
8   ~ Copyright (c) 2022 Wipro Limited.
9   ~ ================================================================================
10   ~ Licensed under the Apache License, Version 2.0 (the "License");
11   ~ you may not use this file except in compliance with the License.
12   ~ You may obtain a copy of the License at
13   ~
14   ~      http://www.apache.org/licenses/LICENSE-2.0
15   ~
16   ~ Unless required by applicable law or agreed to in writing, software
17   ~ distributed under the License is distributed on an "AS IS" BASIS,
18   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   ~ See the License for the specific language governing permissions and
20   ~ limitations under the License.
21   ~ ============LICENSE_END=========================================================
22   ~
23   -->
24
25 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xmlns="http://maven.apache.org/POM/4.0.0"
27          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28
29     <modelVersion>4.0.0</modelVersion>
30
31     <parent>
32         <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
33         <artifactId>eelf-logger</artifactId>
34         <version>${revision}</version>
35     </parent>
36
37     <artifactId>eelf-logger-logback-impl</artifactId>
38     <packaging>jar</packaging>
39
40     <!-- EELF LOGGING IMPLEMENTATION BACKED BY LOGBACK LOGGING FRAMEWORK-->
41     <name>EELF Logger Logback Impl</name>
42     <description>Implements EEL Logging Specification using Logback</description>
43
44     <properties>
45         <main.basedir>${project.parent.basedir}</main.basedir>
46     </properties>
47
48     <dependencies>
49
50         <!-- ECOMP LOGGER MODEL -->
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>eelf-logger-model</artifactId>
54             <version>${project.version}</version>
55         </dependency>
56
57         <!-- LOGBACK -->
58         <dependency>
59             <groupId>ch.qos.logback</groupId>
60             <artifactId>logback-classic</artifactId>
61         </dependency>
62
63     </dependencies>
64
65
66 </project>