Skip to content

Commit f4e9e29

Browse files
committed
Fix coverage reporting to coverall.io
It is the fix for the regression from 3140b4f ('jdbc: fix hardcoded driver version'). Fixes #139.
1 parent 214b21a commit f4e9e29

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,17 @@
101101
<groupId>org.jacoco</groupId>
102102
<artifactId>jacoco-maven-plugin</artifactId>
103103
<version>0.8.2</version>
104+
<configuration>
105+
<includes>
106+
</includes>
107+
<!--
108+
Exclude generated sources to prevent a
109+
coveralls-maven-plugin error.
110+
-->
111+
<excludes>
112+
org/tarantool/Version.class
113+
</excludes>
114+
</configuration>
104115
<executions>
105116
<execution>
106117
<id>prepare-agent</id>

0 commit comments

Comments
 (0)