Skip to content

Commit

Permalink
Jakarta New API
Browse files Browse the repository at this point in the history
  • Loading branch information
sathishk committed Jan 24, 2024
1 parent f29ea28 commit 62561de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jsonSchema -->
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jsonSchema</artifactId>
<artifactId>jackson-module-jsonSchema-jakarta</artifactId>
<version>2.16.1</version>
<scope>test</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public class JsonSchemaGeneratorTest {

private final ObjectMapper objectMapper;

private final com.fasterxml.jackson.module.jsonSchema.JsonSchemaGenerator schemaFactory;
private final com.fasterxml.jackson.module.jsonSchema.jakarta.JsonSchemaGenerator schemaFactory;

public JsonSchemaGeneratorTest() {
jsonSchemaGenerator = new JsonSchemaGenerator();
objectMapper = new ObjectMapper();
schemaFactory = new com.fasterxml.jackson.module.jsonSchema.JsonSchemaGenerator(objectMapper);
schemaFactory = new com.fasterxml.jackson.module.jsonSchema.jakarta.JsonSchemaGenerator(objectMapper);
}

@Test
Expand Down

0 comments on commit 62561de

Please sign in to comment.