BpGen refactor Code Quality Issue-ID: DCAEGEN2-2502
[dcaegen2/platform.git] / mod / bpgenerator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ /*
4   ~  * ============LICENSE_START=======================================================
5   ~  *  org.onap.dcae
6   ~  *  ================================================================================
7   ~  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
8   ~  *  ================================================================================
9   ~  *  Licensed under the Apache License, Version 2.0 (the "License");
10   ~  *  you may not use this file except in compliance with the License.
11   ~  *  You may obtain a copy of the License at
12   ~  *
13   ~  *       http://www.apache.org/licenses/LICENSE-2.0
14   ~  *
15   ~  *  Unless required by applicable law or agreed to in writing, software
16   ~  *  distributed under the License is distributed on an "AS IS" BASIS,
17   ~  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   ~  *  See the License for the specific language governing permissions and
19   ~  *  limitations under the License.
20   ~  *  ============LICENSE_END=========================================================
21   ~  */
22   ~
23   -->
24
25 <project xmlns="http://maven.apache.org/POM/4.0.0"
26     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28     <modelVersion>4.0.0</modelVersion>
29
30     <groupId>org.onap.dcaegen2.platform.mod</groupId>
31     <artifactId>blueprint-generator</artifactId>
32     <version>1.7.0-SNAPSHOT</version>
33     <packaging>pom</packaging>
34
35     <modules>
36         <module>common</module>
37         <module>onap</module>
38     </modules>
39
40     <name>BlueprintGenerator</name>
41     <description>This is Parent Module used by DCAE and ONAP to generate Blueprints</description>
42
43     <parent>
44         <groupId>org.onap.oparent</groupId>
45         <artifactId>oparent</artifactId>
46         <version>2.0.0</version>
47         <relativePath/>
48     </parent>
49
50     <properties>
51         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
52         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
53         <java.version>11</java.version>
54         <maven.compiler.source>${java.version}</maven.compiler.source>
55         <maven.compiler.target>${java.version}</maven.compiler.target>
56         <spring-boot.version>2.2.9.RELEASE</spring-boot.version>
57         <jackson.version>2.9.7</jackson.version>
58         <lombok.version>1.18.10</lombok.version>
59         <gson.version>2.8.6</gson.version>
60         <commons.io.version>2.6</commons.io.version>
61         <commons.cli.version>1.4</commons.cli.version>
62         <maven.surefireplugin.version>2.22.2</maven.surefireplugin.version>
63         <maven.compilerplugin.version>3.8.1</maven.compilerplugin.version>
64         <dockerfile-maven-plugin.version>1.4.10</dockerfile-maven-plugin.version>
65         <docker.image.name>onap/${project.groupId}.${project.artifactId}</docker.image.name>
66         <sonar.maven.plugin>3.0.2</sonar.maven.plugin>
67         <sonar.junit.reportsPath>${project.basedir}/target/surefire-reports
68         </sonar.junit.reportsPath>
69         <sonar.surefire.reportsPath>${project.basedir}/target/surefire-reports
70         </sonar.surefire.reportsPath>
71         <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco-ut/jacoco.xml
72         </sonar.coverage.jacoco.xmlReportPaths>
73     </properties>
74
75     <dependencies>
76         <dependency>
77             <groupId>org.springframework</groupId>
78             <artifactId>spring-context</artifactId>
79             <version>5.2.0.RELEASE</version>
80         </dependency>
81         <dependency>
82             <groupId>org.springframework</groupId>
83             <artifactId>spring-core</artifactId>
84             <version>5.2.0.RELEASE</version>
85         </dependency>
86         <dependency>
87             <groupId>org.springframework.boot</groupId>
88             <artifactId>spring-boot-starter</artifactId>
89             <version>2.2.5.RELEASE</version>
90         </dependency>
91         <dependency>
92             <groupId>org.springframework.boot</groupId>
93             <artifactId>spring-boot-starter-test</artifactId>
94             <version>2.2.5.RELEASE</version>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.springframework.boot</groupId>
99             <artifactId>spring-boot-starter-validation</artifactId>
100             <version>2.2.5.RELEASE</version>
101         </dependency>
102         <dependency>
103             <groupId>org.projectlombok</groupId>
104             <artifactId>lombok</artifactId>
105             <version>${lombok.version}</version>
106             <scope>provided</scope>
107         </dependency>
108         <dependency>
109             <groupId>com.google.code.gson</groupId>
110             <artifactId>gson</artifactId>
111             <version>${gson.version}</version>
112         </dependency>
113         <dependency>
114             <groupId>com.fasterxml.jackson.dataformat</groupId>
115             <artifactId>jackson-dataformat-yaml</artifactId>
116             <version>${jackson.version}</version>
117         </dependency>
118         <dependency>
119             <groupId>junit</groupId>
120             <artifactId>junit</artifactId>
121             <version>4.12</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.mockito</groupId>
126             <artifactId>mockito-core</artifactId>
127             <version>3.1.0</version>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>info.picocli</groupId>
132             <artifactId>picocli</artifactId>
133             <version>3.9.6</version>
134         </dependency>
135         <dependency>
136             <groupId>com.fasterxml.jackson.core</groupId>
137             <artifactId>jackson-databind</artifactId>
138             <version>${jackson.version}</version>
139         </dependency>
140         <dependency>
141             <groupId>com.fasterxml.jackson.core</groupId>
142             <artifactId>jackson-annotations</artifactId>
143             <version>${jackson.version}</version>
144         </dependency>
145         <dependency>
146             <groupId>commons-io</groupId>
147             <artifactId>commons-io</artifactId>
148             <version>${commons.io.version}</version>
149         </dependency>
150         <dependency>
151             <groupId>commons-cli</groupId>
152             <artifactId>commons-cli</artifactId>
153             <version>${commons.cli.version}</version>
154         </dependency>
155         <dependency>
156             <groupId>org.apache.maven</groupId>
157             <artifactId>maven-model</artifactId>
158             <version>3.3.9</version>
159         </dependency>
160     </dependencies>
161
162     <build>
163         <plugins>
164             <plugin>
165                 <groupId>org.apache.maven.plugins</groupId>
166                 <artifactId>maven-javadoc-plugin</artifactId>
167                 <version>2.10.2</version>
168                 <configuration>
169                     <additionalparam>-Xdoclint:all</additionalparam>
170                     <additionalparam>-Xlint:all</additionalparam>
171                 </configuration>
172             </plugin>
173
174             <plugin>
175                 <groupId>org.apache.maven.plugins</groupId>
176                 <artifactId>maven-surefire-report-plugin</artifactId>
177                 <version>2.6</version>
178                 <executions>
179                     <execution>
180                         <phase>test</phase>
181                         <goals>
182                             <goal>report</goal>
183                         </goals>
184                     </execution>
185                 </executions>
186             </plugin>
187             <plugin>
188                 <groupId>org.apache.maven.plugins</groupId>
189                 <artifactId>maven-compiler-plugin</artifactId>
190                 <version>${maven.compilerplugin.version}</version>
191                 <configuration>
192                     <source>${maven.compiler.source}</source>
193                     <target>${maven.compiler.target}</target>
194                 </configuration>
195             </plugin>
196             <plugin>
197                 <groupId>org.sonarsource.scanner.maven</groupId>
198                 <artifactId>sonar-maven-plugin</artifactId>
199                 <version>${sonar.maven.plugin}</version>
200             </plugin>
201         </plugins>
202     </build>
203
204 </project>