52d1427fd2387a2da1058d88e3ab70aae36c014e
[dcaegen2/platform.git] / mod2 / helm-generator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ # ============LICENSE_START=======================================================
4   ~ # Copyright (c) 2021-2022 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22     <modelVersion>4.0.0</modelVersion>
23     <packaging>pom</packaging>
24     <modules>
25         <module>helmchartgenerator-core</module>
26         <module>helmchartgenerator-cli</module>
27     </modules>
28     <parent>
29         <groupId>org.onap.oparent</groupId>
30         <artifactId>oparent</artifactId>
31         <version>2.0.0</version>
32     </parent>
33
34     <groupId>org.onap.dcaegen2.platform</groupId>
35     <artifactId>helmchartgenerator</artifactId>
36     <version>1.0.3-SNAPSHOT</version>
37     <name>helm-chart-generator</name>
38     <description>Helm chart generator</description>
39     <properties>
40         <java.version>11</java.version>
41         <maven.compiler.source>${java.version}</maven.compiler.source>
42         <maven.compiler.target>${java.version}</maven.compiler.target>
43         <spring-boot.version>2.4.0</spring-boot.version>
44         <sonar.maven.plugin>3.0.2</sonar.maven.plugin>
45         <sonar.junit.reportsPath>${project.basedir}/target/surefire-reports
46         </sonar.junit.reportsPath>
47         <sonar.surefire.reportsPath>${project.basedir}/target/surefire-reports
48         </sonar.surefire.reportsPath>
49         <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco-ut/jacoco.xml
50         </sonar.coverage.jacoco.xmlReportPaths>
51     </properties>
52     <dependencies>
53         <dependency>
54             <groupId>org.springframework.boot</groupId>
55             <artifactId>spring-boot-starter</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.springframework.boot</groupId>
59             <artifactId>spring-boot-starter-test</artifactId>
60             <scope>test</scope>
61             <exclusions>
62                 <exclusion>
63                     <groupId>org.junit.vintage</groupId>
64                     <artifactId>junit-vintage-engine</artifactId>
65                 </exclusion>
66                 <exclusion>
67                     <groupId>com.fasterxml.jackson.core</groupId>
68                     <artifactId>jackson-databind</artifactId>
69                 </exclusion>
70             </exclusions>
71         </dependency>
72         <dependency>
73             <groupId>commons-io</groupId>
74             <artifactId>commons-io</artifactId>
75             <version>2.11.0</version>
76         </dependency>
77         <dependency>
78             <groupId>org.projectlombok</groupId>
79             <artifactId>lombok</artifactId>
80             <version>1.18.20</version>
81         </dependency>
82         <dependency>
83             <groupId>com.fasterxml.jackson.core</groupId>
84             <artifactId>jackson-databind</artifactId>
85             <version>2.10.3</version>
86         </dependency>
87         <dependency>
88             <groupId>com.fasterxml.jackson.dataformat</groupId>
89             <artifactId>jackson-dataformat-yaml</artifactId>
90             <version>2.9.8</version>
91         </dependency>
92         <dependency>
93             <groupId>org.everit.json</groupId>
94             <artifactId>org.everit.json.schema</artifactId>
95             <version>1.3.0</version>
96         </dependency>
97         <dependency>
98             <groupId>com.vaadin.external.google</groupId>
99             <artifactId>android-json</artifactId>
100             <version>0.0.20131108.vaadin1</version>
101             <scope>compile</scope>
102         </dependency>
103         <dependency>
104             <groupId>com.squareup.okhttp3</groupId>
105             <artifactId>okhttp</artifactId>
106             <version>4.9.3</version>
107         </dependency>
108         <dependency>
109             <groupId>com.squareup.okhttp3</groupId>
110             <artifactId>mockwebserver</artifactId>
111             <version>4.0.1</version>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115     <dependencyManagement>
116         <dependencies>
117             <dependency>
118                 <!-- Import dependency management from Spring Boot -->
119                 <groupId>org.springframework.boot</groupId>
120                 <artifactId>spring-boot-dependencies</artifactId>
121                 <version>${spring-boot.version}</version>
122                 <type>pom</type>
123                 <scope>import</scope>
124             </dependency>
125         </dependencies>
126     </dependencyManagement>
127     <build>
128         <plugins>
129             <plugin>
130                 <groupId>org.apache.maven.plugins</groupId>
131                 <artifactId>maven-javadoc-plugin</artifactId>
132                 <version>2.10.2</version>
133                 <configuration>
134                     <additionalparam>-Xdoclint:all</additionalparam>
135                     <additionalparam>-Xlint:all</additionalparam>
136                 </configuration>
137             </plugin>
138
139             <plugin>
140                 <groupId>org.apache.maven.plugins</groupId>
141                 <artifactId>maven-surefire-report-plugin</artifactId>
142                 <version>2.6</version>
143                 <executions>
144                     <execution>
145                         <phase>test</phase>
146                         <goals>
147                             <goal>report</goal>
148                         </goals>
149                     </execution>
150                 </executions>
151             </plugin>
152             <plugin>
153                 <groupId>org.apache.maven.plugins</groupId>
154                 <artifactId>maven-surefire-plugin</artifactId>
155                 <version>2.22.2</version>
156             </plugin>
157             <plugin>
158                 <groupId>org.sonarsource.scanner.maven</groupId>
159                 <artifactId>sonar-maven-plugin</artifactId>
160                 <version>${sonar.maven.plugin}</version>
161             </plugin>
162         </plugins>
163     </build>
164 </project>