3

I am using pom.xml like

<dependency>
    <groupId>com.fasterxml.jackson.module</groupId>
    <artifactId>jackson-module-parameter-names</artifactId>
</dependency>
<dependency>
    <groupId>com.fasterxml.jackson.datatype</groupId>
    <artifactId>jackson-datatype-jdk8</artifactId>
</dependency>
<dependency>
    <groupId>com.fasterxml.jackson.datatype</groupId>
    <artifactId>jackson-datatype-jsr310</artifactId>
</dependency>

but there is no .jar available in public repo. It have only .pom file in respective release. Public maven repository link

How to get .jar for it.

purna ram
  • 402
  • 1
  • 4
  • 14

2 Answers2

1

You can manually download .zip for respective release from jackson-modules-java8/releases and build it locally using command.

mvn clean install

It will give you .jar for each module under respective target directory.

pl_rock
  • 14,054
  • 3
  • 30
  • 33
0

You need to also include that dependency in your pom.xml:

<dependency>
    <groupId>com.fasterxml.jackson.module</groupId>
    <artifactId>jackson-modules-java8</artifactId>
    <version><!-- same version as your other jackson dependencies --></version>
</dependency>
Mureinik
  • 297,002
  • 52
  • 306
  • 350