-
Notifications
You must be signed in to change notification settings - Fork 0
Jackson3 was released. That would require some work if we want to sup… #72
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
aa4b425
Jackson3 was released. That would require some work if we want to sup…
59bfbe3
Fixing all kind of changes because of jackson2 -> 3
mihxil 1973b4b
More jackson2 -> 3
mihxil 5d377c6
added dep -jackson3
mihxil 23cc0fb
More jackson3 support work.
mihxil 72ccf69
Made it compile.
mihxil a8e6b65
Made it compile.
mihxil ec30019
Merge branch 'main' into jackson3-support
mihxil a54ca62
Try with snapshot.
mihxil 6185c27
Made it compile.
mihxil f4f6b43
Small new feature, that makes log4j2-test superflous.
mihxil 0fa9357
Trying to fix test cases.
mihxil e0860bc
Trying to fix test cases.
mihxil 4b3ad1d
Trying to fix test cases.
mihxil 8b423a9
Merged main.
mihxil 59d58be
Upped some dependencies.
mihxil be848cd
No need to do that for something else.
mihxil 3fcf537
Test case failures.
mihxil 4a225be
Fixing test cases.
mihxil c8f68ec
Finally figured it out.
mihxil File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ on: | |
| push: | ||
| paths: | ||
| - pom.xml | ||
| branches: ['**'] | ||
| branches: ['main', 'REL-*'] | ||
| workflow_dispatch: | ||
|
|
||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| = Jackson3 utilities | ||
|
|
||
| image:http://www.javadoc.io/badge/nl.vpro.shared/vpro-shared-jackson3.svg?color=blue[javadoc,link=http://www.javadoc.io/doc/nl.vpro.shared/vpro-shared-jackson3] | ||
|
|
||
|
|
||
|
|
||
| We collect some generic Jackson3 utilities. Mainly `tools.jackson.databind.ValueSerializer`s and `tools.jackson.databind.ValueDeserializer`s. | ||
|
|
||
| Some of them are bundled in modules. E.g. a `nl.vpro.jackson3.DateModule`, which can will make a `tools.jackson.databind.ObjectMapper` recognize `java.time` classes | ||
| (but a bit differently then `com.fasterxml.jackson.datatype.jsr310.JavaTimeModule` does, which it predates). | ||
|
|
||
| Also `nl.vpro.jackson2.Views` is provided which defines a few classes which can be used with `@com.fasterxml.jackson.annotation.JsonView`. | ||
|
|
||
| == JsonArrayIterator | ||
|
|
||
| This package also contains `nl.vpro.jackson3.JsonArrayIterator`. A tool to wrap, using jackson, a stream of json object into an iterator of java objects. |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The closing bracket for the array is missing on this line. There should be a closing bracket
]after line 42.