Support 7.2.1 VES in 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          <onap-gerrit-review>-changelog-missing</onap-gerrit-review>
47     </properties>
48
49     <dependencies>
50
51         <!-- PROJECT DEPENDENCIES -->
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>dcae-analytics-tca-model</artifactId>
55         </dependency>
56
57         <!-- CODE GENERATION -->
58         <dependency>
59             <groupId>org.projectlombok</groupId>
60             <artifactId>lombok</artifactId>
61             <scope>provided</scope>
62         </dependency>
63
64         <!-- FIND BUGS -->
65         <dependency>
66             <groupId>com.google.code.findbugs</groupId>
67             <artifactId>jsr305</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>com.google.code.findbugs</groupId>
71             <artifactId>annotations</artifactId>
72         </dependency>
73
74         <!-- TEST DEPENDENCIES -->
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>dcae-analytics-test</artifactId>
78         </dependency>
79
80     </dependencies>
81
82
83     <dependencyManagement>
84         <dependencies>
85             <dependency>
86                 <groupId>org.springframework</groupId>
87                 <artifactId>spring-context</artifactId>
88                 <version>5.0.11.RELEASE</version>
89             </dependency>
90         </dependencies>
91     </dependencyManagement>
92 </project>