Maven Repository - POM file for Http jackson-module-parameter-names 2.4.1 2.4.1

Summary

Jackson-module-parameter-names.

Add-on module for Jackson (http://jackson.codehaus.org) to support introspection of method/constructor parameter names, without having to add explicit property name annotation..

Declaration

Here is the list of declaration for jackson-module-parameter-names. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.fasterxml.jackson.module</groupId>
   <artifactId>jackson-module-parameter-names</artifactId>
   <version>2.4.1</version>
</dependency>

If you think this Maven repository POM file listing for jackson-module-parameter-names is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Depends on

The jackson-module-parameter-names-2.4.1 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JSONjackson-core 2.4.1
Core Jackson abstractions, basic JSON streaming API implementation
16
JEEjackson-databind 2.4.1
General data-binding functionality for Jackson: works on core streaming API
19

Plugin

The following plugins are used in the jackson-module-parameter-names-2.4.1.jar

  1. maven-compiler-plugin
  2. maven-enforcer-plugin
  3. replacer

Packages

The following packages are defined in the jackson-module-parameter-names-2.4.1.jar

com.fasterxml.jackson.module.paramnames

POM File Source

Here is the content of the POM file.

<?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.fasterxml.jackson</groupId>
    <artifactId>jackson-parent</artifactId>
    <version>2.4.1</version>
  </parent>
  <groupId>com.fasterxml.jackson.module</groupId>
  <artifactId>jackson-module-parameter-names</artifactId>
  <name>Jackson-module-parameter-names</name>
  <version>2.4.1</version>
  <packaging>bundle</packaging>
  <description>Add-on module for Jackson (http://jackson.codehaus.org) to support
introspection of method/constructor parameter names, without having to add explicit property name annotation.
</description>

  

  <scm>
    <connection>scm:git:git@github.com:FasterXML/jackson-module-parameter-names.git</connection>
    <developerConnection>scm:git:git@github.com:FasterXML/jackson-module-parameter-names.git</developerConnection>
    <url>http://github.com/FasterXML/jackson-module-parameter-names</url>    
    <tag>jackson-module-parameter-names-2.4.1</tag>
  </scm>
  <properties>
    <version.jackson.core>2.4.1</version.jackson.core>
    <!-- explicitly target JDK 8 -->
    <javac.src.version>1.8</javac.src.version>
    <javac.target.version>1.8</javac.target.version>
    <!-- Generate PackageVersion.java into this directory. -->
    <packageVersion.dir>com/fasterxml/jackson/module/paramnames</packageVersion.dir>
    <packageVersion.package>${project.groupId}.paramnames</packageVersion.package>

    <!-- Configuration properties for the OSGi maven-bundle-plugin -->
    <osgi.import>com.fasterxml.jackson.core
,com.fasterxml.jackson.core
,com.fasterxml.jackson.core.json
,com.fasterxml.jackson.core.util
,com.fasterxml.jackson.databind
,com.fasterxml.jackson.databind.introspect
,com.fasterxml.jackson.databind.module
    </osgi.import>
    <osgi.export>${project.groupId}.paramnames.*;version=${project.version}
</osgi.export>
  </properties>

  <dependencies>
    <!-- Extends Jackson mapper -->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>${version.jackson.core}</version>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>${version.jackson.core}</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <executions>
          <execution>
            <id>enforce-java</id>
            <phase>validate</phase>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <requireJavaVersion>
                  <version>[1.8,)</version>
                </requireJavaVersion>
              </rules>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.0</version>
        <inherited>true</inherited>
        <configuration>
          <source>${javac.src.version}</source>
          <target>${javac.target.version}</target>
          <showDeprecation>true</showDeprecation>
          <showWarnings>true</showWarnings>
          <optimize>true</optimize>
          <compilerArguments>
            <Xmaxerrs>10000</Xmaxerrs>
            <Xmaxwarns>10000</Xmaxwarns>
            <Xlint />
            <Werror />
            <parameters />
          </compilerArguments>
        </configuration>
      </plugin>
      <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>
    </plugins>
  </build>
</project>