1 <?xml version="1.0" encoding="UTF-8"?>
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
11 ~ http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
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">
26 <modelVersion>4.0.0</modelVersion>
29 <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
30 <artifactId>eelf-logger</artifactId>
31 <version>1.3.1-SNAPSHOT</version>
34 <artifactId>eelf-logger-model</artifactId>
35 <packaging>jar</packaging>
38 <!-- EELF LOGGER MODELS CONTAINS IMMUTABLE MODEL OBJECTS FOR VARIOUS EELF LOGGER INTERFACES -->
39 <name>EELF Logger Model</name>
40 <description>Contains immutable model objects for various EELF Logger interfaces</description>
43 <main.basedir>${project.parent.basedir}</main.basedir>
44 <!-- SONAR SETTINGS : EXCLUDE TEST COVERAGE AS MODEL ONLY CONTAINS POJOs AND NO BUSINESS LOGIC-->
45 <sonar.coverage.exclusions>**/model/**</sonar.coverage.exclusions>
48 <!-- NOTE: THIS MODULE MUST NOT HAVE ANY DEPENDENCY BESIDES ECOMP LOGGER API IN COMPILE SCOPE -->
51 <!-- ECOMP LOGGER API -->
53 <groupId>${project.groupId}</groupId>
54 <artifactId>eelf-logger-api</artifactId>
55 <version>${project.version}</version>
58 <!-- LOMBOK IS USED FOR CODE GENERATION IN PROVIDED SCOPE (NOT IN COMPILE SCOPE) -->
60 <groupId>org.projectlombok</groupId>
61 <artifactId>lombok</artifactId>
67 <sourceDirectory>${project.build.directory}/generated-sources/delombok</sourceDirectory>
70 <groupId>org.projectlombok</groupId>
71 <artifactId>lombok-maven-plugin</artifactId>