jackson-module-jaxb-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.guicedee.services</groupId> <artifactId>jackson-module-jaxb-annotations</artifactId> <version>1.1.0.2-jre15</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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.guicedee.services</groupId> <artifactId>services-parent</artifactId> <version>1.1.0.2-jre15</version> </parent> <artifactId>jackson-module-jaxb-annotations</artifactId> <name>Jackson module: JAXB Annotations</name> <packaging>jar</packaging> <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> <!-- 22-Mar-2019, tatu: [modules-base#80]: Presence of JAF on the bundle classpath is only necessary when ser/deser'ing javax.a.DataHandlers --> <osgi.import>javax.activation;resolution:=optional,*</osgi.import> </properties> <dependencies> <!-- Extends Jackson core and mapper; minor dep on annotations too (JsonInclude) --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <!-- and actual JAXB annotations, types --> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>jakarta.xml.bind-api</artifactId> </dependency> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>jakarta.activation</artifactId> </dependency> </dependencies> <build> <plugins> <!-- 14-Mar-2019, tatu: Add rudimentary JDK9+ module info. To build with JDK 8 will have to use `moduleInfoFile` as anything else requires JDK 9+ --> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <inherited>true</inherited> <configuration> <jvmVersion>11</jvmVersion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>jakarta</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>jakarta</shadedClassifierName> <createDependencyReducedPom>false</createDependencyReducedPom> <artifactSet> <includes> <include>com.fasterxml.jackson.module:jackson-module-jaxb-annotations</include> </includes> </artifactSet> <relocations> <relocation> <pattern>javax.xml.bind</pattern> <shadedPattern>jakarta.xml.bind</shadedPattern> </relocation> <relocation> <pattern>javax.activation</pattern> <shadedPattern>jakarta.activation</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>