Skip to content

Commit

Permalink
Merge pull request zalando#1435 from zalando/fix_coveralls_plugin_dep…
Browse files Browse the repository at this point in the history
…endency

Fix coveralls plugin dependency
  • Loading branch information
msdousti authored Feb 24, 2023
2 parents ebaa589 + d871806 commit eed608c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:
run: ./mvnw verify -P "${{ matrix.profile }}" -B
- name: Coverage
if: github.event_name != 'pull_request'
run: ./mvnw org.eluder.coveralls:coveralls-maven-plugin:4.3.0:report -B -D repoToken=${{ secrets.COVERALLS_TOKEN }}
run: ./mvnw coveralls:report -B -D repoToken=${{ secrets.COVERALLS_TOKEN }}
5 changes: 0 additions & 5 deletions logbook-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -477,11 +477,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
Expand Down
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,21 @@
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>

0 comments on commit eed608c

Please sign in to comment.