jackson-module-jaxb-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jwebmp.jackson.module</groupId> <artifactId>jackson-module-jaxb-annotations</artifactId> <version>0.63.0.19</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jwebmp.jackson.module</groupId> <artifactId>jackson-modules-base</artifactId> <version>0.63.0.19</version> </parent> <artifactId>jackson-module-jaxb-annotations</artifactId> <name>Jackson module: JAXB Annotations</name> <description>Support for using JAXB annotations as an alternative to "native" Jackson annotations, for configuring data-binding. </description> <url>https://github.com/FasterXML/jackson-modules-base</url> <properties> <!-- Generate PackageVersion.java into this directory. --> <packageVersion.dir>com/fasterxml/jackson/module/jaxb</packageVersion.dir> <packageVersion.package>${project.groupId}.jaxb</packageVersion.package> </properties> <dependencies> <!-- Extends Jackson core and mapper; minor dep on annotations too (JsonInclude) --> <dependency> <groupId>com.jwebmp.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <!-- and actual JAXB annotations... --> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.0</version> <scope>provided</scope> </dependency> </dependencies> <build> </build> <profiles> <profile> <id>jdk11</id> <dependencies> <dependency> <groupId>javax.activation</groupId> <artifactId>javax.activation-api</artifactId> <version>1.2.0</version> </dependency> </dependencies> </profile> </profiles> </project>