Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
Bump mockserver-junit-jupiter from 5.10 to 5.11.2 (#349)
Browse files Browse the repository at this point in the history
* Bump mockserver-junit-jupiter from 5.10 to 5.11.2

Bumps [mockserver-junit-jupiter](https://github.com/jamesdbloom/mockservice) from 5.10 to 5.11.2.
- [Release notes](https://github.com/jamesdbloom/mockservice/releases)
- [Changelog](https://github.com/mock-server/mockserver/blob/master/changelog.md)
- [Commits](mock-server/mockserver@mockserver-5.10...mockserver-5.11.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fix dependency issue

* Add GitHub Action for running tests

* Add GitHub Action for running tests

* Add GitHub Action for running tests

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Roman Proshin <roman@proshin.org>
  • Loading branch information
dependabot-preview[bot] and proshin-roman authored Nov 11, 2020
1 parent 0db1743 commit 9088187
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: All tests

on:
push:

jobs:
test:
name: All tests
runs-on: ubuntu-18.04

steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Maven Verify
run: mvn -B clean verify
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@
<artifactId>json</artifactId>
<version>20200518</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -134,7 +139,8 @@
<dependency>
<groupId>org.mock-server</groupId>
<artifactId>mockserver-junit-jupiter</artifactId>
<version>5.10</version>
<version>5.11.2</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit 9088187

Please sign in to comment.