Skip to content

Commit f7402b8

Browse files
committed
iluwatar#104 Workaround to re-enable code coverage analysis
1 parent 215af05 commit f7402b8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,13 @@
152152
<groupId>org.jacoco</groupId>
153153
<artifactId>jacoco-maven-plugin</artifactId>
154154
<version>${jacoco.version}</version>
155+
<!-- The following exclude configuration was added because error occurred when executing "mvn clean test jacoco:report coveralls:report" -->
156+
<!-- [ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:3.1.0:report (default-cli) on project java-design-patterns: I/O operation failed: No source found for domainapp/dom/modules/simple/QSimpleObject.java -> [Help 1] -->
157+
<configuration>
158+
<excludes>
159+
<exclude>domainapp/dom/modules/simple/QSimpleObject.class</exclude>
160+
</excludes>
161+
</configuration>
155162
<executions>
156163
<execution>
157164
<id>prepare-agent</id>

0 commit comments

Comments
 (0)