[DCAEGEN2] Vulnerability addressal for TCAgen2
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ TCAgen2
5   ~ ================================================================================
6   ~ Copyright (c) 2018-2019 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="http://maven.apache.org/POM/4.0.0"
26          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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-tca-core</artifactId>
38     <packaging>jar</packaging>
39
40     <!-- THIS MODULE CONTAINS CORE LOGIC FOR TCA ANALYTICS SERVICE -->
41     <name>DCAE Analytics TCA Core</name>
42     <description>Contins Core functionality for TCA</description>
43
44     <properties>
45         <main.basedir>${project.parent.basedir}</main.basedir>
46     </properties>
47
48     <dependencies>
49
50         <!-- PROJECT DEPENDENCIES -->
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>dcae-analytics-tca-model</artifactId>
54         </dependency>
55
56         <!-- CODE GENERATION -->
57         <dependency>
58             <groupId>org.projectlombok</groupId>
59             <artifactId>lombok</artifactId>
60             <scope>provided</scope>
61         </dependency>
62
63         <!-- FIND BUGS -->
64         <dependency>
65             <groupId>com.google.code.findbugs</groupId>
66             <artifactId>jsr305</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>com.google.code.findbugs</groupId>
70             <artifactId>annotations</artifactId>
71         </dependency>
72
73         <!-- TEST DEPENDENCIES -->
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>dcae-analytics-test</artifactId>
77         </dependency>
78
79     </dependencies>
80
81
82     <dependencyManagement>
83         <dependencies>
84             <dependency>
85                 <groupId>org.springframework</groupId>
86                 <artifactId>spring-context</artifactId>
87                 <version>5.0.11.RELEASE</version>
88             </dependency>
89         </dependencies>
90     </dependencyManagement>
91 </project>