Skip to content

Commit

Permalink
fix coveralls.io setup to run on GH actions (#456)
Browse files Browse the repository at this point in the history
* fix coveralls.io setup to run on GH actions
  • Loading branch information
abelsromero committed Jul 14, 2020
1 parent b7f4c34 commit 8239405
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@ jobs:
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-cache-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-mvn-cache-
- name: Build
run: mvn -B -V -Prun-its clean verify
run: mvn -B -V -Prun-its clean verify
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,18 @@
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${maven.coveralls.plugin.version}</version>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.3</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
Expand Down

0 comments on commit 8239405

Please sign in to comment.