fix clm scan issue
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-web / 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   ~ ================================================================================
6   ~ Licensed under the Apache License, Version 2.0 (the "License");
7   ~ you may not use this file except in compliance with the License.
8   ~ You may obtain a copy of the License at
9   ~
10   ~      http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing, software
13   ~ distributed under the License is distributed on an "AS IS" BASIS,
14   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~ See the License for the specific language governing permissions and
16   ~ limitations under the License.
17   ~ ============LICENSE_END=========================================================
18   ~
19   -->
20
21 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xmlns="http://maven.apache.org/POM/4.0.0"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
29         <artifactId>dcae-analytics</artifactId>
30         <version>3.0.0-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>dcae-analytics-tca-web</artifactId>
34     <packaging>jar</packaging>
35
36     <!-- THE MODULE CONTAINS WEB RELATED CODE FOR TCA -->
37     <name>DCAE Analytics TCA Web</name>
38     <description>Contains Web related code for TCA</description>
39
40     <properties>
41         <main.basedir>${project.parent.basedir}</main.basedir>
42     </properties>
43
44     <dependencies>
45
46         <!-- PROJECT DEPENDENCIES -->
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>dcae-analytics-web</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>dcae-analytics-tca-core</artifactId>
54         </dependency>
55
56
57         <!-- SPRING DEPENDENCIES -->
58         <dependency>
59             <groupId>org.springframework.boot</groupId>
60             <artifactId>spring-boot-starter-actuator</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>io.micrometer</groupId>
64             <artifactId>micrometer-registry-prometheus</artifactId>
65         </dependency>
66
67
68         <!-- SPRING CONFIGURATION META DATA ANNOTATION PROCESSOR -->
69         <dependency>
70             <groupId>org.springframework.boot</groupId>
71             <artifactId>spring-boot-configuration-processor</artifactId>
72             <optional>true</optional>
73         </dependency>
74
75         <!-- CODE GENERATION -->
76         <dependency>
77             <groupId>org.projectlombok</groupId>
78             <artifactId>lombok</artifactId>
79             <scope>provided</scope>
80         </dependency>
81
82         <!-- FIND BUGS -->
83         <dependency>
84             <groupId>com.google.code.findbugs</groupId>
85             <artifactId>jsr305</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.google.code.findbugs</groupId>
89             <artifactId>annotations</artifactId>
90         </dependency>
91
92         <!-- REST API SWAGGER -->
93         <dependency>
94             <groupId>io.springfox</groupId>
95             <artifactId>springfox-swagger2</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>io.springfox</groupId>
99             <artifactId>springfox-swagger-ui</artifactId>
100         </dependency>
101
102         <!-- TEST DEPENDENCIES -->
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>dcae-analytics-test</artifactId>
106         </dependency>
107
108     </dependencies>
109
110     <dependencyManagement>
111         <dependencies>
112             <dependency>
113                 <groupId>org.springframework</groupId>
114                 <artifactId>spring-core</artifactId>
115                 <version>5.0.11.RELEASE</version>
116             </dependency>
117         </dependencies>
118     </dependencyManagement>
119     
120     <build>
121         <resources>
122             <resource>
123                 <directory>${project.basedir}/src/main/resources</directory>
124             </resource>
125             <resource>
126                 <directory>${project.build.directory}/git</directory>
127             </resource>
128         </resources>
129
130         <plugins>
131             <plugin>
132                 <groupId>pl.project13.maven</groupId>
133                 <artifactId>git-commit-id-plugin</artifactId>
134             </plugin>
135             <plugin>
136                 <groupId>org.springframework.boot</groupId>
137                 <artifactId>spring-boot-maven-plugin</artifactId>
138             </plugin>
139             <!-- DOCKER PLUGIN -->
140             <plugin>
141                 <groupId>com.spotify</groupId>
142                 <artifactId>docker-maven-plugin</artifactId>
143                 <configuration>
144                         <skipDocker>false</skipDocker>
145                         <imageName>${docker.repository}/onap/${project.groupId}.${project.artifactId}</imageName>
146                         <dockerDirectory>${project.basedir}</dockerDirectory>
147                         <resources>
148                                <resource>
149                                      <targetPath>${project.basedir}</targetPath>
150                                      <directory>${project.build.directory}</directory>
151                                      <include>${project.build.finalName}.jar</include>
152                               </resource>
153                         </resources>
154                         <imageTags>
155                                      <imageTag>${project.version}</imageTag>
156                                      <imageTag>latest</imageTag>
157                         </imageTags>
158                 </configuration>
159             </plugin>
160         </plugins>
161     </build>
162 </project>