Skip to content

Commit ac9c353

Browse files
Merge remote-tracking branch 'origin/main'
2 parents 664014c + 8e433c9 commit ac9c353

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will build a Java project with Maven
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
33

4-
name: Java CI with Maven
4+
name: build
55

66
on:
77
push:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ JSONCompare.assertMatches(expected, actual); // assertion fails
201201
# <a name="differences"></a>Differences
202202
Matching is based on soft assertion. It does not stop at first encountered difference, but it continues until expected JSON is depleted.
203203
All differences are displayed via the AssertionError message from `JSONCompare.assertMatches()` or can be obtained as a List of Strings by using `JSONCompare.diffs()`:
204-
## Differences inside AssertionError message
204+
## AssertionError message
205205
```javascript
206206
String expected =
207207
"""
@@ -368,6 +368,7 @@ The expected JSON can contain json path expressions delimited by `#(` and `)` to
368368
```javascript
369369
// Select the 'isbn' values of store books and match with expected ones
370370
String expected = "{\"#($.store..isbn)\":[\"0-395-19395-8\", \"0-553-21311-1\", \"!.*\"]}";
371+
371372
String actual = "{\n" +
372373
" \"store\": {\n" +
373374
" \"book\": [\n" +

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19-
<jackson.version>2.18.3</jackson.version>
19+
<jackson.version>2.19.2</jackson.version>
2020
<json.path.version>2.9.0</json.path.version>
21-
<junit.version>5.12.1</junit.version>
21+
<junit.version>5.13.4</junit.version>
2222
</properties>
2323

2424
<groupId>com.github.fslev</groupId>
@@ -107,7 +107,7 @@
107107
<plugin>
108108
<groupId>org.apache.maven.plugins</groupId>
109109
<artifactId>maven-gpg-plugin</artifactId>
110-
<version>3.2.7</version>
110+
<version>3.2.8</version>
111111
<executions>
112112
<execution>
113113
<id>sign-artifacts</id>
@@ -186,7 +186,7 @@
186186
<plugin>
187187
<groupId>org.apache.maven.plugins</groupId>
188188
<artifactId>maven-surefire-plugin</artifactId>
189-
<version>3.5.2</version>
189+
<version>3.5.3</version>
190190
<configuration>
191191
<properties>
192192
<configurationParameters>

0 commit comments

Comments
 (0)