additional fix for removing reports from coverage
[dmaap/datarouter.git] / pom.xml
1 <!--
2   ============LICENSE_START==================================================
3   * org.onap.dmaap
4   * ===========================================================================
5   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6   * Modifications Copyright (C) 2018 Nokia. All rights reserved.
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   * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   *
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <groupId>org.onap.dmaap.datarouter</groupId>
27     <artifactId>parent</artifactId>
28     <name>dmaap-datarouter</name>
29     <version>2.0.2-SNAPSHOT</version>
30     <packaging>pom</packaging>
31     <url>https://github.com/att/DMAAP_DATAROUTER</url>
32     <parent>
33         <groupId>org.onap.oparent</groupId>
34         <artifactId>oparent</artifactId>
35         <version>1.2.3</version>
36     </parent>
37     <properties>
38         <datarouter.version>2.0.2-SNAPSHOT</datarouter.version>
39         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40         <maven.compiler.source>1.8</maven.compiler.source>
41         <maven.compiler.target>1.8</maven.compiler.target>
42         <sonar.language>java</sonar.language>
43         <sonar.skip>false</sonar.skip>
44         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
45         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
46         <sonar.jacoco.reportPaths>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPaths>
47         <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
48         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
49         <sonar.projectVersion>${project.version}</sonar.projectVersion>
50         <jetty.version>9.4.14.v20181114</jetty.version>
51         <jetty.websocket.version>8.2.0.v20160908</jetty.websocket.version>
52         <javax.mail-api.version>1.5.5</javax.mail-api.version>
53         <dom4j.version>2.1.1</dom4j.version>
54         <xml-apis.version>1.4.01</xml-apis.version>
55         <thoughtworks.version>1.4.10</thoughtworks.version>
56         <google.guava.version>26.0-jre</google.guava.version>
57         <qos.logback.version>1.2.3</qos.logback.version>
58         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
59         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
60         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
61         <sitePath>/content/sites/site/org/onap/dmaap/datarouter/${project.artifactId}/${project.version}</sitePath>
62         <skip.docker.build>true</skip.docker.build>
63         <skip.docker.tag>true</skip.docker.tag>
64         <skip.docker.push>true</skip.docker.push>
65         <commons-codec.version>1.10</commons-codec.version>
66         <sonar.exclusions>**/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/reports/**</sonar.exclusions>
67     </properties>
68     <modules>
69         <module>datarouter-prov</module>
70         <module>datarouter-node</module>
71         <module>datarouter-subscriber</module>
72         <module>datarouter-docker-compose</module>
73     </modules>
74     <build>
75         <plugins>
76             <plugin>
77                 <groupId>io.fabric8</groupId>
78                 <artifactId>docker-maven-plugin</artifactId>
79                 <version>0.28.0</version>
80                 <configuration>
81                     <skipDockerBuild>true</skipDockerBuild>
82                 </configuration>
83             </plugin>
84             <plugin>
85                 <groupId>org.sonatype.plugins</groupId>
86                 <artifactId>nexus-staging-maven-plugin</artifactId>
87                 <version>1.6.7</version>
88                 <extensions>true</extensions>
89                 <configuration>
90                     <nexusUrl>${onap.nexus.url}</nexusUrl>
91                     <stagingProfileId>176c31dfe190a</stagingProfileId>
92                     <serverId>ecomp-staging</serverId>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.jacoco</groupId>
97                 <artifactId>jacoco-maven-plugin</artifactId>
98                 <version>${jacoco.version}</version>
99                 <configuration>
100                     <excludes>
101                         <exclude>**/gen/**</exclude>
102                         <exclude>**/generated-sources/**</exclude>
103                         <exclude>**/yang-gen/**</exclude>
104                         <exclude>**/pax/**</exclude>
105                         <exclude>**/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/reports/**</exclude>
106                     </excludes>
107                 </configuration>
108                 <executions>
109                     <execution>
110                         <id>pre-unit-test</id>
111                         <goals>
112                             <goal>prepare-agent</goal>
113                         </goals>
114                         <configuration>
115                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
116                             <propertyName>surefireArgLine</propertyName>
117                         </configuration>
118                     </execution>
119                     <execution>
120                         <id>post-unit-test</id>
121                         <phase>test</phase>
122                         <goals>
123                             <goal>report</goal>
124                         </goals>
125                         <configuration>
126                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
127                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
128                         </configuration>
129                     </execution>
130                     <execution>
131                         <id>pre-integration-test</id>
132                         <phase>pre-integration-test</phase>
133                         <goals>
134                             <goal>prepare-agent</goal>
135                         </goals>
136                         <configuration>
137                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
138                             <propertyName>failsafeArgLine</propertyName>
139                         </configuration>
140                     </execution>
141                     <execution>
142                         <id>post-integration-test</id>
143                         <phase>post-integration-test</phase>
144                         <goals>
145                             <goal>report</goal>
146                         </goals>
147                         <configuration>
148                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
149                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
150                         </configuration>
151                     </execution>
152                 </executions>
153             </plugin>
154             <plugin>
155                 <groupId>org.apache.maven.plugins</groupId>
156                 <artifactId>maven-surefire-plugin</artifactId>
157                 <configuration>
158                     <excludes>
159                         <exclude>IntegrationSuite.java</exclude>
160                     </excludes>
161                 </configuration>
162             </plugin>
163         </plugins>
164     </build>
165     <distributionManagement>
166         <repository>
167             <id>ecomp-releases</id>
168             <name>DR Release Repository</name>
169             <url>${onap.nexus.url}${releaseNexusPath}</url>
170         </repository>
171         <snapshotRepository>
172             <id>ecomp-snapshots</id>
173             <name>DR Snapshot Repository</name>
174             <url>${onap.nexus.url}${snapshotNexusPath}</url>
175         </snapshotRepository>
176         <site>
177             <id>ecomp-site</id>
178             <url>dav:${onap.nexus.url}${sitePath}</url>
179         </site>
180     </distributionManagement>
181     <pluginRepositories>
182         <pluginRepository>
183             <id>onap-plugin-snapshots</id>
184             <url>${onap.nexus.url}${snapshotNexusPath}</url>
185         </pluginRepository>
186     </pluginRepositories>
187 </project>