[DCAEMOD/Helm-gen] Vulnerability updates
[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             <exclusions>
108                 <exclusion>
109                     <groupId>com.squareup.okio</groupId>
110                     <artifactId>okio</artifactId>
111                 </exclusion>
112             </exclusions>
113         </dependency>
114         <dependency>
115             <groupId>com.squareup.okhttp3</groupId>
116             <artifactId>mockwebserver</artifactId>
117             <version>4.9.3</version>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>com.squareup.okio</groupId>
122             <artifactId>okio</artifactId>
123             <version>2.2.2</version>
124         </dependency>
125     </dependencies>
126     <dependencyManagement>
127         <dependencies>
128             <dependency>
129                 <!-- Import dependency management from Spring Boot -->
130                 <groupId>org.springframework.boot</groupId>
131                 <artifactId>spring-boot-dependencies</artifactId>
132                 <version>${spring-boot.version}</version>
133                 <type>pom</type>
134                 <scope>import</scope>
135             </dependency>
136         </dependencies>
137     </dependencyManagement>
138     <build>
139         <plugins>
140             <plugin>
141                 <groupId>org.apache.maven.plugins</groupId>
142                 <artifactId>maven-javadoc-plugin</artifactId>
143                 <version>2.10.2</version>
144                 <configuration>
145                     <additionalparam>-Xdoclint:all</additionalparam>
146                     <additionalparam>-Xlint:all</additionalparam>
147                 </configuration>
148             </plugin>
149
150             <plugin>
151                 <groupId>org.apache.maven.plugins</groupId>
152                 <artifactId>maven-surefire-report-plugin</artifactId>
153                 <version>2.6</version>
154                 <executions>
155                     <execution>
156                         <phase>test</phase>
157                         <goals>
158                             <goal>report</goal>
159                         </goals>
160                     </execution>
161                 </executions>
162             </plugin>
163             <plugin>
164                 <groupId>org.apache.maven.plugins</groupId>
165                 <artifactId>maven-surefire-plugin</artifactId>
166                 <version>2.22.2</version>
167             </plugin>
168             <plugin>
169                 <groupId>org.sonarsource.scanner.maven</groupId>
170                 <artifactId>sonar-maven-plugin</artifactId>
171                 <version>${sonar.maven.plugin}</version>
172             </plugin>
173         </plugins>
174     </build>
175 </project>