easy-plugins-jackson-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.nlocketz.plugins</groupId> <artifactId>easy-plugins-jackson-plugin</artifactId> <version>0.2.6</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"> <parent> <artifactId>easy-plugins-parent</artifactId> <groupId>com.nlocketz.plugins</groupId> <version>0.2.6</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>easy-plugins-jackson-plugin</artifactId> <name>jackson-plugin</name> <description>Easy-plugins plugin providing Jackson deserialization support. Serialization is currently not supported.</description> <properties> <easy-plugins.jackson.version>2.9.9.1</easy-plugins.jackson.version> </properties> <dependencies> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> </dependency> <dependency> <groupId>com.nlocketz.plugins</groupId> <artifactId>easy-plugins</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${easy-plugins.jackson.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <showErrors>true</showErrors> </configuration> <executions> <execution> <id>verify</id> <phase>integration-test</phase> <goals> <goal>install</goal> <goal>run</goal> </goals> <configuration> <goals> <goal>verify</goal> </goals> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>