Skip to content

Commit

Permalink
chore: bump dependency versions (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenWickner authored Oct 30, 2024
1 parent 29a9b6c commit 89128e8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions jsonschema-generator-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,35 +137,35 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- maven plugins -->
<maven.plugin.version.checkstyle>3.3.1</maven.plugin.version.checkstyle>
<version.checkstyle>10.14.1</version.checkstyle>
<maven.plugin.version.compiler>3.10.1</maven.plugin.version.compiler>
<maven.plugin.version.enforcer>3.2.1</maven.plugin.version.enforcer>
<maven.plugin.version.javadoc>3.6.3</maven.plugin.version.javadoc>
<maven.plugin.version.moditect>1.0.0.RC3</maven.plugin.version.moditect>
<maven.plugin.version.checkstyle>3.6.0</maven.plugin.version.checkstyle>
<version.checkstyle>10.19.0</version.checkstyle>
<maven.plugin.version.compiler>3.13.0</maven.plugin.version.compiler>
<maven.plugin.version.enforcer>3.5.0</maven.plugin.version.enforcer>
<maven.plugin.version.javadoc>3.10.1</maven.plugin.version.javadoc>
<maven.plugin.version.moditect>1.2.2.Final</maven.plugin.version.moditect>
<maven.plugin.version.release>2.5.3</maven.plugin.version.release>
<maven.plugin.version.source>3.2.1</maven.plugin.version.source>
<maven.plugin.version.surefire>3.2.5</maven.plugin.version.surefire>
<maven.plugin.version.source>3.3.1</maven.plugin.version.source>
<maven.plugin.version.surefire>3.5.1</maven.plugin.version.surefire>

<java.module.name>undefined</java.module.name>

<!-- included dependencies -->
<version.classmate>1.5.1</version.classmate>
<version.jackson>2.14.2</version.jackson>
<version.slf4j>2.0.3</version.slf4j>
<version.classmate>1.7.0</version.classmate>
<version.jackson>2.17.2</version.jackson>
<version.slf4j>2.0.16</version.slf4j>
<!-- test dependencies -->
<version.jsonassert>1.5.1</version.jsonassert>
<version.junit>5.9.1</version.junit>
<version.logback>1.3.12</version.logback>
<version.mockito>4.8.0</version.mockito>
<version.validator>1.0.73</version.validator>
<version.jsonassert>1.5.3</version.jsonassert>
<version.junit>5.11.3</version.junit>
<version.logback>1.5.12</version.logback>
<version.mockito>4.11.0</version.mockito>
<version.validator>1.5.2</version.validator>
<!-- provided module dependencies -->
<version.jakarta.validation>3.0.2</version.jakarta.validation>
<version.jakarta.validation>3.1.0</version.jakarta.validation>
<version.javax.validation>2.0.1.Final</version.javax.validation>
<version.swagger-1.5>1.6.7</version.swagger-1.5>
<version.swagger-2>2.2.5</version.swagger-2>
<version.swagger-1.5>1.6.14</version.swagger-1.5>
<version.swagger-2>2.2.25</version.swagger-2>
<!-- maven plugin runtime dependencies -->
<version.classgraph>4.8.149</version.classgraph>
<version.classgraph>4.8.177</version.classgraph>
</properties>

<dependencyManagement>
Expand Down
4 changes: 0 additions & 4 deletions jsonschema-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ public enum Option {
* and assigning a name to it like for all other defined subschemas.
* <br>
* Otherwise, "$ref"-erences to the main/target schema will use the empty fragment ("#") and it will not be listed in the "definitions"/"$defs".
*
* <p>
* Beware: this only results in a valid schema from {@link SchemaVersion#DRAFT_2019_09} onward. Before that, everything besides "$ref" would be
* ignored.
Expand Down Expand Up @@ -288,6 +289,7 @@ public enum Option {
/**
* Whether all sub-schemas should be defined in-line, i.e. including no "definitions"/"$defs". This takes precedence over
* {@link #DEFINITIONS_FOR_ALL_OBJECTS} and {@link #DEFINITION_FOR_MAIN_SCHEMA}.
*
* <p>
* Beware: This will result in an exception being thrown if a single circular reference is being encountered!
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ public ObjectNode createSchemaReference(Type targetType, Type... typeParameters)
/**
* Completing the schema generation (after {@link #createSchemaReference(Type, Type...)} was invoked for all relevant types) by creating an
* {@link ObjectNode} containing common schema definitions.
*
* <p>
* The given definition path (e.g. {@code "definitions"}, {@code "$defs"}, {@code "components/schemas"}) will be used in generated {@code "$ref"}
* values (e.g. {@code "#/definitions/YourType"}, {@code "#/$defs/YourType"}, {@code "#/components/schemas/YourType"}).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ private static String convertInputToRegex(String input) {
/**
* Converts a standard POSIX Shell globbing pattern into a regular expression pattern. The result can be used with the standard
* {@link java.util.regex} API to recognize strings which match the glob pattern.
*
* <p>
* See also, the POSIX Shell language: http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_13_01
* </p>
Expand Down

0 comments on commit 89128e8

Please sign in to comment.