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

Commit 9088187

Browse files
Bump mockserver-junit-jupiter from 5.10 to 5.11.2 (#349)
* 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] <[email protected]> * 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 <[email protected]>
1 parent 0db1743 commit 9088187

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: All tests
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
test:
8+
name: All tests
9+
runs-on: ubuntu-18.04
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: Set up JDK 11
14+
uses: actions/setup-java@v1
15+
with:
16+
java-version: 11
17+
- name: Maven Verify
18+
run: mvn -B clean verify

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@
9191
<artifactId>json</artifactId>
9292
<version>20200518</version>
9393
</dependency>
94+
<dependency>
95+
<groupId>com.google.code.findbugs</groupId>
96+
<artifactId>jsr305</artifactId>
97+
<version>3.0.2</version>
98+
</dependency>
9499
<dependency>
95100
<groupId>org.slf4j</groupId>
96101
<artifactId>slf4j-api</artifactId>
@@ -134,7 +139,8 @@
134139
<dependency>
135140
<groupId>org.mock-server</groupId>
136141
<artifactId>mockserver-junit-jupiter</artifactId>
137-
<version>5.10</version>
142+
<version>5.11.2</version>
143+
<scope>test</scope>
138144
</dependency>
139145
</dependencies>
140146

0 commit comments

Comments
 (0)