mirror of https://github.com/apache/druid.git
Bump up jackson-databind to 2.10.5.1 (#10655)
* Bump up jackson version to 2.10.5.1 * only jackson-databind * license
This commit is contained in:
parent
577cd66002
commit
abcf624a2e
|
@ -222,7 +222,6 @@ version: 2.10.2
|
||||||
libraries:
|
libraries:
|
||||||
- com.fasterxml.jackson.core: jackson-annotations
|
- com.fasterxml.jackson.core: jackson-annotations
|
||||||
- com.fasterxml.jackson.core: jackson-core
|
- com.fasterxml.jackson.core: jackson-core
|
||||||
- com.fasterxml.jackson.core: jackson-databind
|
|
||||||
- com.fasterxml.jackson.dataformat: jackson-dataformat-cbor
|
- com.fasterxml.jackson.dataformat: jackson-dataformat-cbor
|
||||||
- com.fasterxml.jackson.dataformat: jackson-dataformat-smile
|
- com.fasterxml.jackson.dataformat: jackson-dataformat-smile
|
||||||
- com.fasterxml.jackson.datatype: jackson-datatype-guava
|
- com.fasterxml.jackson.datatype: jackson-datatype-guava
|
||||||
|
@ -256,6 +255,37 @@ notice: |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
name: Jackson
|
||||||
|
license_category: binary
|
||||||
|
module: java-core
|
||||||
|
license_name: Apache License version 2.0
|
||||||
|
version: 2.10.5.1
|
||||||
|
libraries:
|
||||||
|
- com.fasterxml.jackson.core: jackson-databind
|
||||||
|
notice: |
|
||||||
|
# Jackson JSON processor
|
||||||
|
|
||||||
|
Jackson is a high-performance, Free/Open Source JSON processing library.
|
||||||
|
It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has
|
||||||
|
been in development since 2007.
|
||||||
|
It is currently developed by a community of developers, as well as supported
|
||||||
|
commercially by FasterXML.com.
|
||||||
|
|
||||||
|
## Licensing
|
||||||
|
|
||||||
|
Jackson core and extension components may licensed under different licenses.
|
||||||
|
To find the details that apply to this artifact see the accompanying LICENSE file.
|
||||||
|
For more information, including possible other licensing options, contact
|
||||||
|
FasterXML.com (http://fasterxml.com).
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
A list of contributors may be found from CREDITS file, which is included
|
||||||
|
in some artifacts (usually source distributions); but is always available
|
||||||
|
from the source code management (SCM) system project uses.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
name: JavaBeans Activation Framework API JAR
|
name: JavaBeans Activation Framework API JAR
|
||||||
license_category: binary
|
license_category: binary
|
||||||
module: java-core
|
module: java-core
|
||||||
|
|
3
pom.xml
3
pom.xml
|
@ -93,6 +93,7 @@
|
||||||
<jetty.version>9.4.34.v20201102</jetty.version>
|
<jetty.version>9.4.34.v20201102</jetty.version>
|
||||||
<jersey.version>1.19.3</jersey.version>
|
<jersey.version>1.19.3</jersey.version>
|
||||||
<jackson.version>2.10.2</jackson.version>
|
<jackson.version>2.10.2</jackson.version>
|
||||||
|
<jackson.databind.version>2.10.5.1</jackson.databind.version>
|
||||||
<codehaus.jackson.version>1.9.13</codehaus.jackson.version>
|
<codehaus.jackson.version>1.9.13</codehaus.jackson.version>
|
||||||
<log4j.version>2.8.2</log4j.version>
|
<log4j.version>2.8.2</log4j.version>
|
||||||
<mysql.version>5.1.48</mysql.version>
|
<mysql.version>5.1.48</mysql.version>
|
||||||
|
@ -451,7 +452,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>${jackson.version}</version>
|
<version>${jackson.databind.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
|
Loading…
Reference in New Issue