Skip to content

Commit 00ca108

Browse files
committed
fix jacoco report location
1 parent 3af35da commit 00ca108

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

pom.xml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
3535
<sonar.organization>arangodb-1</sonar.organization>
3636
<sonar.java.spotbugs.reportPaths>target/spotbugsXml.xml</sonar.java.spotbugs.reportPaths>
37-
<sonar.coverage.jacoco.xmlReportPaths>site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
37+
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
3838
<jpms.argLine/>
39-
<argLine/>
4039
</properties>
4140

4241
<dependencies>
@@ -173,29 +172,6 @@
173172
<excludeFilterFile>spotbugs/spotbugs-exclude.xml</excludeFilterFile>
174173
</configuration>
175174
</plugin>
176-
<plugin>
177-
<groupId>org.jacoco</groupId>
178-
<artifactId>jacoco-maven-plugin</artifactId>
179-
<version>0.8.13</version>
180-
<executions>
181-
<execution>
182-
<goals>
183-
<goal>prepare-agent</goal>
184-
</goals>
185-
</execution>
186-
<execution>
187-
<id>report</id>
188-
<goals>
189-
<goal>report</goal>
190-
</goals>
191-
</execution>
192-
</executions>
193-
<configuration>
194-
<formats>
195-
<format>XML</format>
196-
</formats>
197-
</configuration>
198-
</plugin>
199175
</plugins>
200176
</build>
201177
</profile>
@@ -415,6 +391,30 @@
415391
</configuration>
416392
</plugin>
417393

394+
<plugin>
395+
<groupId>org.jacoco</groupId>
396+
<artifactId>jacoco-maven-plugin</artifactId>
397+
<version>0.8.13</version>
398+
<executions>
399+
<execution>
400+
<goals>
401+
<goal>prepare-agent</goal>
402+
</goals>
403+
</execution>
404+
<execution>
405+
<id>report</id>
406+
<goals>
407+
<goal>report</goal>
408+
</goals>
409+
</execution>
410+
</executions>
411+
<configuration>
412+
<formats>
413+
<format>XML</format>
414+
</formats>
415+
</configuration>
416+
</plugin>
417+
418418
<plugin>
419419
<groupId>org.codehaus.mojo</groupId>
420420
<artifactId>flatten-maven-plugin</artifactId>

0 commit comments

Comments
 (0)