4a0b64a76a38058497b0da64bac95fd5f946a486
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-model / 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>dcae-analytics</artifactId>
34         <version>${revision}</version>
35     </parent>
36
37     <artifactId>dcae-analytics-model</artifactId>
38     <packaging>jar</packaging>
39
40     <!-- THIS MODULE CONTAINS MODELS COMMON FOR ALL DCAE ANALYTICS MODULES. 
41         NOTE: THIS MODULE MUST NOT DEPEND ON ANY OTHER ANALYTICS MODULE IN COMPILE 
42         SCOPE. -->
43     <name>DCAE Analytics Model</name>
44     <description>Contains models (e.g. Common Event Format) which are common to DCAE Analytics</description>
45
46     <properties>
47         <main.basedir>${project.parent.basedir}</main.basedir>
48         <sdk.version>1.8.6</sdk.version>
49         <immutable.version>2.7.1</immutable.version>
50     </properties>
51
52     <dependencies>
53
54         <!-- LOGGING API -->
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-api</artifactId>
58         </dependency>
59
60         <!-- JSON SERIALIZATION/DESERIALIZATION LIBRARY -->
61         <dependency>
62             <groupId>com.fasterxml.jackson.core</groupId>
63             <artifactId>jackson-databind</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.fasterxml.jackson.core</groupId>
67             <artifactId>jackson-core</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>com.fasterxml.jackson.dataformat</groupId>
71             <artifactId>jackson-dataformat-smile</artifactId>
72         </dependency>
73
74         <!-- JSON PATH -->
75         <dependency>
76             <groupId>com.jayway.jsonpath</groupId>
77             <artifactId>json-path</artifactId>
78         </dependency>
79
80         <!-- CODE GENERATION -->
81         <dependency>
82             <groupId>org.projectlombok</groupId>
83             <artifactId>lombok</artifactId>
84             <scope>provided</scope>
85         </dependency>
86
87         <!-- TEST DEPENDENCIES -->
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>dcae-analytics-test</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
95             <artifactId>cbs-client</artifactId>
96             <version>${sdk.version}</version>
97         </dependency>
98         <dependency>
99             <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
100             <artifactId>dmaap-client</artifactId>
101             <version>${sdk.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>org.springframework</groupId>
105             <artifactId>spring-beans</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.springframework</groupId>
109             <artifactId>spring-context</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.springframework</groupId>
113             <artifactId>spring-webflux</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.springframework.boot</groupId>
117             <artifactId>spring-boot-autoconfigure</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>javax.validation</groupId>
121             <artifactId>validation-api</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.immutables</groupId>
125             <artifactId>value</artifactId>
126             <version>${immutable.version}</version>
127             <scope>provided</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
131             <artifactId>eelf-logger-logback-impl</artifactId>
132         </dependency>
133     </dependencies>
134
135 </project>