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