# jackson-modules-base **Repository Path**: mirrors_addons/jackson-modules-base ## Basic Information - **Project Name**: jackson-modules-base - **Description**: Uber-project for foundational modules of Jackson that build directly on core components but nothing else; not including data format or datatype modules - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: 3.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-03 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Overview This is a multi-module umbrella project for [Jackson](../../../jackson) modules that are considered foundational, building on core databind, but not including datatype or data format modules, or JAX-/Jakarta-RS providers. Not all "general" modules are included here; this grouping is to be used for more mature (and generally slower moving, stable) modules. Currently included are: * [Afterburner](afterburner/) -- * [Blackbird](blackbird/) * Guice * "Old" (`javax.inject`) based versions: [Guice](guice/) * New "Jakarta" (`jakarta.inject`) based versions: [Guice 7](guice7/) (added in 2.16) * Java XML Binding Annotation compatibility * "Old" (`java.xml.bind`) annotations: [JAXB Annotations](jaxb/) * New "Jakarta" (`jakarta.xml.bind`): [Jakarta XML Bind Annotations](jakarta-xmlbind/) (added in 2.13) * [Mr Bean](mrbean/) * [No-Constructor-Deserialization](no-ctor-deser/) * [OSGi](osgi/) * [Paranamer](paranamer/) (2.x only) * discontinued so no 3.x versions exist * [SPI subtypes](spi-subtypes) (2.21+) ## Status [![Build Status](https://travis-ci.org/FasterXML/jackson-modules-base.svg)](https://travis-ci.org/FasterXML/jackson-modules-base) ## License All modules are licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt). Additionally, 2.x versions of `Afterburner` and `Mr Bean` use [ASM](https://gitlab.ow2.org/asm/asm), licensed as per: https://asm.ow2.io/license.html whereas 3.0 will use [ByteBuddy](https://github.com/raphw/byte-buddy) (licensed as per https://github.com/raphw/byte-buddy/blob/master/LICENSE) ## Using Jakarta You need to choose either: * `jackson-module-jaxb-annotations` for "old JAXB" (2.x): supports `javax.xml.bind` annotations * `jackson-module-jakarta-xmlbind-annotations` for "new Jakarta JAXB" (3.x): supports `jakarta.xml.bind` annotations (in theory you can even use both, with databind `AnnotationIntrospectorPair`, but more often you will only want one of these) ## More See [Wiki](../../wiki) for more information (javadocs).