92bd50fcdad795c513f3e7b1b494a2eb7703ccec
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
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
10   ~
11   ~      http://www.apache.org/licenses/LICENSE-2.0
12   ~
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=========================================================
19   ~
20   -->
21
22 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xmlns="http://maven.apache.org/POM/4.0.0"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26     <modelVersion>4.0.0</modelVersion>
27
28     <parent>
29         <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
30         <artifactId>dcae-analytics</artifactId>
31         <version>1.3.1-SNAPSHOT</version>
32     </parent>
33
34     <artifactId>dcae-analytics-tca-model</artifactId>
35     <packaging>jar</packaging>
36
37     <!-- THIS MODULE CONTAINS TCA MODELS -->
38     <name>DCAE Analytics TCA Model</name>
39     <description>Contains models for TCA (Threshold Crossing Alert) micro service</description>
40
41     <properties>
42         <main.basedir>${project.parent.basedir}</main.basedir>
43     </properties>
44
45
46     <dependencies>
47
48         <!-- PROJECT DEPENDENCIES-->
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>dcae-analytics-model</artifactId>
52         </dependency>
53
54         <!-- CODE GENERATION -->
55         <dependency>
56             <groupId>org.projectlombok</groupId>
57             <artifactId>lombok</artifactId>
58             <scope>provided</scope>
59         </dependency>
60
61         <!-- TEST DEPENDENCIES -->
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>dcae-analytics-test</artifactId>
65         </dependency>
66
67     </dependencies>
68
69
70 </project>