[jOOQ/jOOQ#13605] Add explicit jackson core dependency, too

This commit is contained in:
Lukas Eder 2022-05-31 14:02:08 +02:00
parent 768f5033b4
commit 5bc5261690
3 changed files with 14 additions and 3 deletions

View File

@ -46,6 +46,10 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>

View File

@ -8,6 +8,7 @@ module org.jooq.jackson.extensions {
requires com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.datatype.jsr310;
requires com.fasterxml.jackson.kotlin;
requires com.fasterxml.jackson.core;
// Nullability annotations for better Kotlin interop
requires static org.jetbrains.annotations;

12
pom.xml
View File

@ -55,6 +55,7 @@
<!-- [#12884] TODO: Remove explicit upgrade of protobuf-java again when https://github.com/google/error-prone/pull/2819 is released -->
<errorprone.version>2.11.0</errorprone.version>
<testcontainers.version>1.16.3</testcontainers.version>
<jackson.version>2.13.3</jackson.version>
</properties>
<licenses>
@ -165,17 +166,22 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.3</version>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.13.3</version>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<version>2.12.3</version>
<version>${jackson.version}</version>
</dependency>
<!-- At the point of release 3.16, it seems not all drivers have been upgraded to 0.9.0.RELEASE yet -->