Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dependencies #247

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CI/lastRelease.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def getLastReleaseTag():
tag = l["tag_name"]
if str(draft) != 'True' and tag.startswith("v2"):
return tag[1:]
return "v2.1.3"
return "2.1.3"
# main
def main():
result = getLastReleaseTag()
Expand Down
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -97,7 +97,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
Expand Down Expand Up @@ -125,7 +125,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<version>3.3.0</version>
<configuration>
<excludes>
<exclude>**/logback.xml</exclude>
Expand Down Expand Up @@ -183,7 +183,7 @@
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<version>3.3.1</version>
<executions>
<execution>
<id>copy-resources</id>
Expand Down Expand Up @@ -432,22 +432,22 @@
</repositories>
<properties>
<maven.compiler.release>8</maven.compiler.release>
<jackson.version>2.15.3</jackson.version>
<jackson-databind.version>2.15.3</jackson-databind.version>
<jackson.version>2.17.0</jackson.version>
<jackson-databind.version>2.17.0</jackson-databind.version>
<snakeyaml.version>2.2</snakeyaml.version>
<httpclient-version>4.5.14</httpclient-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
<swagger-parser-version>2.1.18</swagger-parser-version>
<swagger-inflector-version>2.0.10</swagger-inflector-version>
<swagger-parser-version>2.1.22</swagger-parser-version>
<swagger-inflector-version>2.0.12</swagger-inflector-version>
<jetty-version>9.4.53.v20231009</jetty-version>
<logback-version>1.4.11</logback-version>
<logback-version>1.5.3</logback-version>
<slf4j-version>2.0.9</slf4j-version>
<surefire-version>3.1.2</surefire-version>
<wiremock-version>3.3.1</wiremock-version>
<wiremock-version>3.5.2</wiremock-version>
<junit-version>4.13.2</junit-version>
<assertj-version>3.24.2</assertj-version>
<assertj-version>3.25.3</assertj-version>
<json-schema-validator-version>2.2.14</json-schema-validator-version>
<nt-json-schema-validator-version>1.0.87</nt-json-schema-validator-version>
<nt-json-schema-validator-version>1.4.0</nt-json-schema-validator-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/spec/validator/ValidatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ public void testDebugInvalid30SpecByContentNt() throws Exception {

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

@Test
Expand Down Expand Up @@ -843,7 +843,7 @@ public void testDebugInvalid20SpecByContentNt() throws Exception {

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

@Test
Expand Down
Loading