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