Skip to content

Commit ba4b0a5

Browse files
committed
publish coveralls
1 parent e152782 commit ba4b0a5

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
java-package: jdk
1818

1919
- name: Run tests
20-
run: mvn clean test jacoco:report coveralls:jacoco -Dcoveralls.token=${{ secrets.COVERALLS_TOKEN }}
20+
run: mvn clean test coveralls:jacoco -Dcoveralls.token=${{ secrets.COVERALLS_TOKEN }}

lombok.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lombok.addLombokGeneratedAnnotation = true

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,12 @@
474474
<groupId>org.jacoco</groupId>
475475
<artifactId>jacoco-maven-plugin</artifactId>
476476
<version>${version.org.jacoco.maven-plugin}</version>
477+
<configuration>
478+
<!-- exclude generated code -->
479+
<excludes>
480+
<exclude>org/fiware/ngsi/**/*</exclude>
481+
</excludes>
482+
</configuration>
477483
<executions>
478484
<execution>
479485
<id>pre-unit-tests</id>

0 commit comments

Comments
 (0)