Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Bruno Sakoto | 5c7c489 | 2021-02-08 21:51:05 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (c) 2021 Pantheon.tech. |
| 5 | Modifications Copyright (C) 2021 Bell Canada. |
Rishi.Chail | 475bab5 | 2021-03-30 14:02:03 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2021 Nordix Foundation. |
Bruno Sakoto | 5c7c489 | 2021-02-08 21:51:05 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 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 | <parent> |
| 26 | <groupId>org.onap.oparent</groupId> |
| 27 | <artifactId>oparent</artifactId> |
Rishi.Chail | 47b0b18 | 2021-01-28 03:19:47 +0000 | [diff] [blame] | 28 | <version>3.2.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 29 | <relativePath/> |
| 30 | </parent> |
| 31 | <modelVersion>4.0.0</modelVersion> |
| 32 | |
| 33 | <groupId>org.onap.cps</groupId> |
| 34 | <artifactId>cps-parent</artifactId> |
Rishi.Chail | dbffd91 | 2021-03-05 12:32:33 +0000 | [diff] [blame] | 35 | <version>1.1.0-SNAPSHOT</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 36 | <packaging>pom</packaging> |
| 37 | |
| 38 | <properties> |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 39 | <app>org.onap.cps.Application</app> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 40 | <java.version>11</java.version> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 41 | <minimum-coverage>0.9</minimum-coverage> |
Claudio David Gasparini | d45b2dc | 2021-01-13 13:28:07 +0100 | [diff] [blame] | 42 | |
| 43 | <jacoco.reportDirectory.aggregate>${project.reporting.outputDirectory}/jacoco-aggregate</jacoco.reportDirectory.aggregate> |
| 44 | <sonar.coverage.jacoco.xmlReportPaths> |
| 45 | ../cps-ri/target/site/jacoco-ut/jacoco.xml, |
| 46 | ../cps-ri/target/site/jacoco-aggregate/jacoco.xml, |
| 47 | ../cps-service/target/site/jacoco-ut/jacoco.xml, |
| 48 | ../cps-service/target/site/jacoco-aggregate/jacoco.xml, |
| 49 | ../cps-rest/target/site/jacoco-ut/jacoco.xml, |
| 50 | ../cps-rest/target/site/jacoco-aggregate/jacoco.xml, |
Claudio D. Gasparini | 3241cda | 2021-06-04 15:30:59 +0200 | [diff] [blame] | 51 | ../cps-ncmp-service/target/site/jacoco-ut/jacoco.xml, |
| 52 | ../cps-ncmp-service/target/site/jacoco-aggregate/jacoco.xml, |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 53 | ../cps-ncmp-rest/target/site/jacoco-ut/jacoco.xml, |
| 54 | ../cps-ncmp-rest/target/site/jacoco-aggregate/jacoco.xml, |
Claudio D. Gasparini | 3241cda | 2021-06-04 15:30:59 +0200 | [diff] [blame] | 55 | ../cps-path-parser/target/site/jacoco-ut/jacoco.xml, |
| 56 | ../cps-path-parser/target/site/jacoco-aggregate/jacoco.xml, |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 57 | ../cps-application/target/site/jacoco-ut/jacoco.xml, |
| 58 | ../cps-application/target/site/jacoco-aggregate/jacoco.xml |
Claudio David Gasparini | d45b2dc | 2021-01-13 13:28:07 +0100 | [diff] [blame] | 59 | </sonar.coverage.jacoco.xmlReportPaths> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 60 | </properties> |
| 61 | |
| 62 | <dependencyManagement> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>org.onap.cps</groupId> |
| 66 | <artifactId>cps-dependencies</artifactId> |
| 67 | <version>${project.version}</version> |
| 68 | <type>pom</type> |
| 69 | <scope>import</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.cps</groupId> |
| 73 | <artifactId>cps-bom</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | <type>pom</type> |
| 76 | <scope>import</scope> |
| 77 | </dependency> |
| 78 | </dependencies> |
| 79 | </dependencyManagement> |
| 80 | |
| 81 | <build> |
| 82 | <resources> |
| 83 | <resource> |
| 84 | <directory>src/main/resources</directory> |
| 85 | <filtering>true</filtering> |
| 86 | </resource> |
| 87 | <resource> |
| 88 | <directory>target/generated-sources/license</directory> |
| 89 | <includes> |
| 90 | <include>third-party-licenses.txt</include> |
| 91 | </includes> |
| 92 | </resource> |
| 93 | <resource> |
| 94 | <directory>target/generated-resources/licenses</directory> |
| 95 | <includes> |
| 96 | <include>*.*</include> |
| 97 | </includes> |
| 98 | <targetPath>third-party-licenses</targetPath> |
| 99 | </resource> |
| 100 | </resources> |
| 101 | <pluginManagement> |
| 102 | <plugins> |
| 103 | <plugin> |
| 104 | <groupId>org.springframework.boot</groupId> |
| 105 | <artifactId>spring-boot-maven-plugin</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 106 | <version>2.3.3.RELEASE</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 107 | <executions> |
| 108 | <execution> |
| 109 | <goals> |
Ruslan Kashapov | f4d1c98 | 2020-10-29 11:39:31 +0200 | [diff] [blame] | 110 | <goal>build-info</goal> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 111 | <goal>repackage</goal> |
| 112 | </goals> |
| 113 | </execution> |
| 114 | </executions> |
| 115 | </plugin> |
Bruno Sakoto | 6c34718 | 2021-07-22 15:25:23 -0400 | [diff] [blame] | 116 | <plugin> |
| 117 | <groupId>org.apache.maven.plugins</groupId> |
| 118 | <artifactId>maven-surefire-plugin</artifactId> |
| 119 | <version>3.0.0-M5</version> |
| 120 | </plugin> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 121 | <!-- Swagger code generation. --> |
| 122 | <plugin> |
| 123 | <groupId>io.swagger.codegen.v3</groupId> |
| 124 | <artifactId>swagger-codegen-maven-plugin</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 125 | <version>3.0.18</version> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 126 | </plugin> |
Claudio David Gasparini | 87c74a1 | 2020-11-18 08:38:01 +0100 | [diff] [blame] | 127 | <plugin> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 128 | <groupId>com.github.spotbugs</groupId> |
| 129 | <artifactId>spotbugs-maven-plugin</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 130 | <version>4.1.3</version> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 131 | <dependencies> |
| 132 | <dependency> |
| 133 | <groupId>com.github.spotbugs</groupId> |
| 134 | <artifactId>spotbugs</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 135 | <version>4.2.0</version> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>${project.groupId}</groupId> |
| 139 | <artifactId>spotbugs</artifactId> |
| 140 | <version>${project.version}</version> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <!-- The SpotBugs Maven plugin uses SLF4J 1.8 beta 2 --> |
| 144 | <groupId>org.slf4j</groupId> |
| 145 | <artifactId>slf4j-simple</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 146 | <version>1.8.0-beta4</version> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 147 | </dependency> |
| 148 | </dependencies> |
| 149 | <configuration> |
| 150 | <plugins> |
| 151 | <plugin> |
| 152 | <groupId>jp.skypencil.findbugs.slf4j</groupId> |
| 153 | <artifactId>bug-pattern</artifactId> |
| 154 | <version>1.5.0</version> |
| 155 | </plugin> |
| 156 | </plugins> |
| 157 | <!-- |
| 158 | Enables analysis which takes more memory but finds more bugs. |
| 159 | If you run out of memory, changes the value of the effort element |
| 160 | to 'Low'. |
| 161 | --> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 162 | <addSourceDirs>true</addSourceDirs> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 163 | <effort>Max</effort> |
| 164 | <!-- Reports all bugs (other values are medium and max) --> |
| 165 | <threshold>Low</threshold> |
| 166 | <!-- Build doesn't fail if problems are found --> |
Claudio David Gasparini | 9afc8d1 | 2021-01-11 16:42:30 +0100 | [diff] [blame] | 167 | <failOnError>true</failOnError> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 168 | <!-- References the excluded rules --> |
| 169 | <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> |
| 170 | <!-- Produces XML report --> |
| 171 | <xmlOutput>true</xmlOutput> |
| 172 | <!-- Configures the directory in which the XML report is created --> |
| 173 | <xmlOutputDirectory>${project.build.directory}/spotbugs</xmlOutputDirectory> |
| 174 | </configuration> |
| 175 | <executions> |
| 176 | <!-- |
| 177 | Ensures that SpotBugs inspects source code when project is compiled. |
| 178 | --> |
| 179 | <execution> |
| 180 | <id>analyze-compile</id> |
| 181 | <phase>compile</phase> |
| 182 | <goals> |
| 183 | <goal>check</goal> |
| 184 | </goals> |
| 185 | </execution> |
| 186 | </executions> |
| 187 | </plugin> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 188 | <plugin> |
| 189 | <groupId>org.jsonschema2pojo</groupId> |
| 190 | <artifactId>jsonschema2pojo-maven-plugin</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 191 | <version>1.1.1</version> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 192 | <configuration> |
| 193 | <targetVersion>${java.version}</targetVersion> |
| 194 | </configuration> |
| 195 | <executions> |
| 196 | <execution> |
| 197 | <goals> |
| 198 | <goal>generate</goal> |
| 199 | </goals> |
| 200 | </execution> |
| 201 | </executions> |
| 202 | </plugin> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 203 | </plugins> |
| 204 | </pluginManagement> |
| 205 | <plugins> |
| 206 | <plugin> |
| 207 | <groupId>org.apache.maven.plugins</groupId> |
| 208 | <artifactId>maven-compiler-plugin</artifactId> |
| 209 | <configuration> |
| 210 | <source>${java.version}</source> |
| 211 | <target>${java.version}</target> |
| 212 | </configuration> |
| 213 | </plugin> |
| 214 | <plugin> |
| 215 | <groupId>org.apache.maven.plugins</groupId> |
| 216 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 217 | <executions> |
| 218 | <execution> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 219 | <id>onap-license</id> |
| 220 | <goals> |
| 221 | <goal>check</goal> |
| 222 | </goals> |
| 223 | <phase>process-sources</phase> |
| 224 | <configuration> |
| 225 | <configLocation>onap-checkstyle/check-license.xml</configLocation> |
| 226 | <includeResources>false</includeResources> |
| 227 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 228 | <includeTestResources>false</includeTestResources> |
| 229 | <sourceDirectories> |
| 230 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 231 | </sourceDirectories> |
| 232 | <consoleOutput>false</consoleOutput> |
| 233 | <violationSeverity>warning</violationSeverity> |
| 234 | <failOnViolation>true</failOnViolation> |
| 235 | </configuration> |
| 236 | </execution> |
| 237 | <execution> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 238 | <id>onap-java-style</id> |
| 239 | <goals> |
| 240 | <goal>check</goal> |
| 241 | </goals> |
| 242 | <phase>process-sources</phase> |
| 243 | <configuration> |
| 244 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 245 | <sourceDirectories> |
| 246 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 247 | </sourceDirectories> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 248 | <includeResources>true</includeResources> |
| 249 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 250 | <includeTestResources>true</includeTestResources> |
| 251 | <consoleOutput>false</consoleOutput> |
| 252 | <violationSeverity>warning</violationSeverity> |
| 253 | <failOnViolation>true</failOnViolation> |
| 254 | </configuration> |
| 255 | </execution> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 256 | <execution> |
| 257 | <id>cps-java-style</id> |
| 258 | <goals> |
| 259 | <goal>check</goal> |
| 260 | </goals> |
| 261 | <phase>process-sources</phase> |
| 262 | <configuration> |
| 263 | <configLocation>cps-java-style.xml</configLocation> |
| 264 | <sourceDirectories> |
| 265 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 266 | </sourceDirectories> |
| 267 | <includeResources>true</includeResources> |
| 268 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 269 | <includeTestResources>true</includeTestResources> |
| 270 | <consoleOutput>true</consoleOutput> |
| 271 | <violationSeverity>warning</violationSeverity> |
| 272 | <failOnViolation>true</failOnViolation> |
| 273 | </configuration> |
| 274 | </execution> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 275 | </executions> |
| 276 | <dependencies> |
| 277 | <dependency> |
| 278 | <groupId>org.onap.oparent</groupId> |
| 279 | <artifactId>checkstyle</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 280 | <version>3.1.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 281 | </dependency> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 282 | <dependency> |
| 283 | <groupId>${project.groupId}</groupId> |
| 284 | <artifactId>checkstyle</artifactId> |
| 285 | <version>${project.version}</version> |
| 286 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 287 | </dependencies> |
| 288 | </plugin> |
| 289 | <!-- Mandatory plugins for using Spock --> |
| 290 | <plugin> |
| 291 | <!-- The gmavenplus plugin is used to compile Groovy code. |
| 292 | To learn more about this plugin, visit https://github.com/groovy/GMavenPlus/wiki --> |
| 293 | <groupId>org.codehaus.gmavenplus</groupId> |
| 294 | <artifactId>gmavenplus-plugin</artifactId> |
| 295 | <version>1.9.0</version> |
| 296 | <executions> |
| 297 | <execution> |
| 298 | <goals> |
| 299 | <goal>compileTests</goal> |
| 300 | </goals> |
| 301 | </execution> |
| 302 | </executions> |
| 303 | </plugin> |
| 304 | <!-- Required because names of spec classes don't match default |
| 305 | Surefire patterns (`*Test` etc.) --> |
| 306 | <plugin> |
| 307 | <groupId>org.apache.maven.plugins</groupId> |
| 308 | <artifactId>maven-surefire-plugin</artifactId> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 309 | <configuration> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 310 | <!--suppress UnresolvedMavenProperty --> |
Claudio David Gasparini | 13cc64d | 2020-12-02 18:47:09 +0100 | [diff] [blame] | 311 | <argLine>${surefireArgLine}</argLine> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 312 | <useFile>false</useFile> |
| 313 | <includes> |
| 314 | <include>**/*Spec.java</include> |
| 315 | <include>**/*Test.java</include> <!-- Just in case of having also "normal" JUnit tests --> |
| 316 | </includes> |
Claudio David Gasparini | 13cc64d | 2020-12-02 18:47:09 +0100 | [diff] [blame] | 317 | <excludes> |
| 318 | <exclude>**/IT*.java</exclude> |
| 319 | </excludes> |
Ruslan Kashapov | bf02f20 | 2020-12-17 10:38:53 +0200 | [diff] [blame] | 320 | <environmentVariables> |
| 321 | <!-- |
| 322 | disable privileged container usage to cleanup the test containers; |
| 323 | these will be removed automatically on jvm termination; |
| 324 | see https://www.testcontainers.org/features/configuration/#disabling-ryuk |
| 325 | --> |
| 326 | <TESTCONTAINERS_RYUK_DISABLED>true</TESTCONTAINERS_RYUK_DISABLED> |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 327 | <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX> |
Ruslan Kashapov | bf02f20 | 2020-12-17 10:38:53 +0200 | [diff] [blame] | 328 | </environmentVariables> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 329 | </configuration> |
| 330 | </plugin> |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 331 | <plugin> |
Claudio David Gasparini | 87c74a1 | 2020-11-18 08:38:01 +0100 | [diff] [blame] | 332 | <groupId>org.jacoco</groupId> |
| 333 | <artifactId>jacoco-maven-plugin</artifactId> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 334 | <configuration> |
| 335 | <excludes> |
| 336 | <exclude>org/onap/cps/rest/model/*</exclude> |
| 337 | <exclude>org/onap/cps/cpspath/parser/antlr4/*</exclude> |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 338 | <exclude>org/onap/cps/ncmp/rest/model/*</exclude> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 339 | </excludes> |
| 340 | </configuration> |
Claudio David Gasparini | 87c74a1 | 2020-11-18 08:38:01 +0100 | [diff] [blame] | 341 | <executions> |
| 342 | <execution> |
| 343 | <id>default-prepare-agent</id> |
| 344 | <goals> |
| 345 | <goal>prepare-agent</goal> |
| 346 | </goals> |
| 347 | </execution> |
| 348 | <execution> |
| 349 | <id>coverage-check</id> |
| 350 | <goals> |
| 351 | <goal>check</goal> |
| 352 | </goals> |
| 353 | <configuration> |
Claudio David Gasparini | 13cc64d | 2020-12-02 18:47:09 +0100 | [diff] [blame] | 354 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
Claudio David Gasparini | 87c74a1 | 2020-11-18 08:38:01 +0100 | [diff] [blame] | 355 | <rules> |
| 356 | <rule> |
| 357 | <element>BUNDLE</element> |
| 358 | <limits> |
| 359 | <limit> |
| 360 | <counter>INSTRUCTION</counter> |
| 361 | <value>COVEREDRATIO</value> |
| 362 | <minimum>${minimum-coverage}</minimum> |
| 363 | </limit> |
| 364 | </limits> |
| 365 | </rule> |
| 366 | </rules> |
| 367 | </configuration> |
| 368 | </execution> |
Claudio David Gasparini | 593920b | 2021-01-13 13:47:18 +0100 | [diff] [blame] | 369 | <execution> |
| 370 | <id>report</id> |
| 371 | <goals> |
| 372 | <goal>report-aggregate</goal> |
| 373 | </goals> |
| 374 | <phase>verify</phase> |
| 375 | <configuration> |
| 376 | <dataFileIncludes> |
| 377 | <fileInclude>**/code-coverage/jacoco-ut.exec</fileInclude> |
| 378 | </dataFileIncludes> |
| 379 | </configuration> |
| 380 | </execution> |
Claudio David Gasparini | 87c74a1 | 2020-11-18 08:38:01 +0100 | [diff] [blame] | 381 | </executions> |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 382 | </plugin> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 383 | <plugin> |
| 384 | <groupId>com.github.spotbugs</groupId> |
| 385 | <artifactId>spotbugs-maven-plugin</artifactId> |
| 386 | </plugin> |
Claudio David Gasparini | 7492aea | 2021-01-13 08:34:00 +0100 | [diff] [blame] | 387 | <plugin> |
| 388 | <groupId>org.sonarsource.scanner.maven</groupId> |
| 389 | <artifactId>sonar-maven-plugin</artifactId> |
| 390 | </plugin> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 391 | </plugins> |
| 392 | </build> |
Rishi.Chail | 7572907 | 2021-04-08 14:23:32 +0100 | [diff] [blame] | 393 | </project> |