Skip to content

Commit b07ab21

Browse files
committed
update dependencies
1 parent 4f4f817 commit b07ab21

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

CI/lastRelease.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def getLastReleaseTag():
99
tag = l["tag_name"]
1010
if str(draft) != 'True' and tag.startswith("v2"):
1111
return tag[1:]
12-
return "v2.1.3"
12+
return "2.1.3"
1313
# main
1414
def main():
1515
result = getLastReleaseTag()

pom.xml

+12-12
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<plugins>
7979
<plugin>
8080
<artifactId>maven-compiler-plugin</artifactId>
81-
<version>3.11.0</version>
81+
<version>3.13.0</version>
8282
</plugin>
8383
<plugin>
8484
<groupId>org.apache.maven.plugins</groupId>
@@ -97,7 +97,7 @@
9797
<plugin>
9898
<groupId>org.apache.maven.plugins</groupId>
9999
<artifactId>maven-surefire-plugin</artifactId>
100-
<version>3.2.2</version>
100+
<version>3.2.3</version>
101101
</plugin>
102102
<plugin>
103103
<artifactId>maven-dependency-plugin</artifactId>
@@ -125,7 +125,7 @@
125125
<plugin>
126126
<groupId>org.apache.maven.plugins</groupId>
127127
<artifactId>maven-jar-plugin</artifactId>
128-
<version>2.6</version>
128+
<version>3.3.0</version>
129129
<configuration>
130130
<excludes>
131131
<exclude>**/logback.xml</exclude>
@@ -183,7 +183,7 @@
183183
</plugin>
184184
<plugin>
185185
<artifactId>maven-resources-plugin</artifactId>
186-
<version>2.6</version>
186+
<version>3.3.1</version>
187187
<executions>
188188
<execution>
189189
<id>copy-resources</id>
@@ -432,22 +432,22 @@
432432
</repositories>
433433
<properties>
434434
<maven.compiler.release>8</maven.compiler.release>
435-
<jackson.version>2.15.3</jackson.version>
436-
<jackson-databind.version>2.15.3</jackson-databind.version>
435+
<jackson.version>2.17.0</jackson.version>
436+
<jackson-databind.version>2.17.0</jackson-databind.version>
437437
<snakeyaml.version>2.2</snakeyaml.version>
438438
<httpclient-version>4.5.14</httpclient-version>
439439
<maven-plugin-version>1.0.0</maven-plugin-version>
440-
<swagger-parser-version>2.1.18</swagger-parser-version>
441-
<swagger-inflector-version>2.0.10</swagger-inflector-version>
440+
<swagger-parser-version>2.1.22</swagger-parser-version>
441+
<swagger-inflector-version>2.0.12</swagger-inflector-version>
442442
<jetty-version>9.4.53.v20231009</jetty-version>
443-
<logback-version>1.4.11</logback-version>
443+
<logback-version>1.5.3</logback-version>
444444
<slf4j-version>2.0.9</slf4j-version>
445445
<surefire-version>3.1.2</surefire-version>
446-
<wiremock-version>3.3.1</wiremock-version>
446+
<wiremock-version>3.5.2</wiremock-version>
447447
<junit-version>4.13.2</junit-version>
448-
<assertj-version>3.24.2</assertj-version>
448+
<assertj-version>3.25.3</assertj-version>
449449
<json-schema-validator-version>2.2.14</json-schema-validator-version>
450-
<nt-json-schema-validator-version>1.0.87</nt-json-schema-validator-version>
450+
<nt-json-schema-validator-version>1.4.0</nt-json-schema-validator-version>
451451
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
452452
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
453453
</properties>

src/test/java/spec/validator/ValidatorTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ public void testDebugInvalid30SpecByContentNt() throws Exception {
753753

754754
ValidationResponse validationResponse = (ValidationResponse) response.getEntity();
755755
assertThat(validationResponse.getMessages().contains(INFO_MISSING)).isTrue();
756-
assertThat("$.info: is missing but it is required").isEqualTo(validationResponse.getSchemaValidationMessages().get(0).getMessage());
756+
assertThat("$: required property 'info' not found").isEqualTo(validationResponse.getSchemaValidationMessages().get(0).getMessage());
757757
}
758758

759759
@Test
@@ -843,7 +843,7 @@ public void testDebugInvalid20SpecByContentNt() throws Exception {
843843

844844
ValidationResponse validationResponse = (ValidationResponse) response.getEntity();
845845
assertThat(validationResponse.getMessages().contains(INFO_MISSING)).isTrue();
846-
assertThat("$.info: is missing but it is required").isEqualTo(validationResponse.getSchemaValidationMessages().get(0).getMessage());
846+
assertThat("$: required property 'info' not found").isEqualTo(validationResponse.getSchemaValidationMessages().get(0).getMessage());
847847
}
848848

849849
@Test

0 commit comments

Comments
 (0)