@@ -24,19 +24,16 @@ all of which are built from this repository, and accessed and used as separate J
2424
2525Jackson 3.0 changes things as it requires Java 8 to work and can thereby directly supported features.
2626
27- Because of this ` parameter-names ` and ` datatypes ` modules are merged into ` jackson-databind `
28- and need not be registered; ` datetime ` module (` JavaTimeModule ` ) remains separate module due to its size
29- and configurability options.
30-
31- So you will only need to separately add "Java 8 Date/time" module (see above for description)
27+ Because of this, all 3 modules are merged into ` jackson-databind `
28+ and need not be registered (as of Jacksson ` 3.0.0-rc3 ` )
3229
3330## License
3431
3532All modules are licensed under [ Apache License 2.0] ( http://www.apache.org/licenses/LICENSE-2.0.txt ) .
3633
3734## Status
3835
39- [ ![ Build Status ] ( https://travis-ci.org /FasterXML/jackson-modules-java8. svg )] ( https://travis-ci.org /FasterXML/jackson-modules-java8 )
36+ [ ![ Build status (github) ] ( https://github.com /FasterXML/jackson-databind/actions/workflows/main.yml/badge. svg )] ( https://github.com /FasterXML/jackson-databind/actions/workflows/main.yml )
4037[ ![ Tidelift] ( https://tidelift.com/badges/package/maven/com.fasterxml.jackson.datatype:jackson-datatype-jsr310 )] ( https://tidelift.com/subscription/pkg/maven-com-fasterxml-jackson-datatype-jackson-datatype-jsr310?utm_source=maven-com-fasterxml-jackson-datatype-jackson-datatype-jsr310&utm_medium=referral&utm_campaign=readme )
4138
4239## Usage
@@ -46,19 +43,19 @@ All modules are licensed under [Apache License 2.0](http://www.apache.org/licens
4643To include modules, you use some or all of:
4744
4845``` xml
49- <!-- Parameter names -->
46+ <!-- parameter names -->
5047<dependency >
5148 <groupId >com.fasterxml.jackson.module</groupId >
5249 <artifactId >jackson-module-parameter-names</artifactId >
5350</dependency >
5451
55- <!-- Java 8 Date/time -->
52+ <!-- Java 8 Date/time -->
5653<dependency >
5754 <groupId >com.fasterxml.jackson.datatype</groupId >
5855 <artifactId >jackson-datatype-jsr310</artifactId >
5956</dependency >
6057
61- <!-- Java 8 Datatypes -->
58+ <!-- Java 8 Datatypes -->
6259<dependency >
6360 <groupId >com.fasterxml.jackson.datatype</groupId >
6461 <artifactId >jackson-datatype-jdk8</artifactId >
0 commit comments