META-INF.maven.com.fasterxml.jackson.module.jackson-module-afterburner.pom.xml Maven / Gradle / Ivy
<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.fasterxml.jackson.module</groupId> <artifactId>jackson-modules-base</artifactId> <version>2.10.0</version> </parent> <artifactId>jackson-module-afterburner</artifactId> <name>Jackson module: Afterburner</name> <packaging>bundle</packaging> <description>Jackson (https://github.com/FasterXML/jackson) extension module used to enhance performance using bytecode generation to replace use of Reflection for field access and method calls </description> <url>https://github.com/FasterXML/jackson-modules-base</url> <properties> <!-- Generate PackageVersion.java into this directory. --> <packageVersion.dir>com/fasterxml/jackson/module/afterburner</packageVersion.dir> <packageVersion.package>${project.groupId}.afterburner</packageVersion.package> <!-- 29-Oct-2015, tatu: default export should work fine; but for import may need dynamic/optional --> <!-- 09-Oct-2011, tatu: should NOT require "com.fasterxml.jackson.databind.deser.impl", but Maven Bundle plug-in insists for some reason?!? Similarly, org.objectweb.asm is shaded... why require? (will try to hide via resolution directive) --> <osgi.import>org.objectweb.asm;resolution:=optional, * </osgi.import> <!-- <osgi.private>com.fasterxml.jackson.module.afterburner.asm</osgi.private> --> </properties> <dependencies> <!-- Extends Jackson core, mapper, Also needs ASM for bytecode generation --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </dependency> <dependency> <!-- tests use Jackson annoations --> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <!-- Inherited from oss-base. Generate PackageVersion.java.--> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <executions> <execution> <id>process-packageVersion</id> <phase>generate-sources</phase> </execution> </executions> </plugin> <plugin> <!-- We will shade ASM, to simplify deployment, avoid version conflicts --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.ow2.asm:asm</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.objectweb.asm</pattern> <shadedPattern>com.fasterxml.jackson.module.afterburner.asm</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <!-- 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> </plugin> </plugins> </build> </project>