Support 7.2.1 VES in TCAGEN2
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-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-tca-model</artifactId>
38     <packaging>jar</packaging>
39
40     <!-- THIS MODULE CONTAINS TCA MODELS -->
41     <name>DCAE Analytics TCA Model</name>
42     <description>Contains models for TCA (Threshold Crossing Alert) micro service</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
50     <dependencies>
51
52         <!-- PROJECT DEPENDENCIES-->
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>dcae-analytics-model</artifactId>
56         </dependency>
57
58         <!-- CODE GENERATION -->
59         <dependency>
60             <groupId>org.projectlombok</groupId>
61             <artifactId>lombok</artifactId>
62             <scope>provided</scope>
63         </dependency>
64
65         <!-- TEST DEPENDENCIES -->
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>dcae-analytics-test</artifactId>
69         </dependency>
70
71     </dependencies>
72
73
74 </project>