Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DEPENDENCY-LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ List of third-party dependencies grouped by their license type.

3-Clause BSD License

* Kryo (com.esotericsoftware:kryo:5.6.0 - https://github.com/EsotericSoftware/kryo/kryo)
* Kryo (com.esotericsoftware:kryo:5.6.2 - https://github.com/EsotericSoftware/kryo/kryo)
* MinLog (com.esotericsoftware:minlog:1.3.1 - https://github.com/EsotericSoftware/minlog)
* Protocol Buffers [Core] (com.google.protobuf:protobuf-java:3.3.0 - https://developers.google.com/protocol-buffers/protobuf-java/)
* ReflectASM (com.esotericsoftware:reflectasm:1.11.9 - https://github.com/EsotericSoftware/reflectasm)
Expand Down Expand Up @@ -315,9 +315,9 @@ List of third-party dependencies grouped by their license type.
* Netty/Transport/UDT (io.netty:netty-transport-udt:4.1.112.Final - https://netty.io/netty-transport-udt/)
* Netty/Transport (io.netty:netty-transport:4.1.112.Final - https://netty.io/netty-transport/)
* Nimbus JOSE+JWT (com.nimbusds:nimbus-jose-jwt:9.37.2 - https://bitbucket.org/connect2id/nimbus-jose-jwt)
* Objenesis (org.objenesis:objenesis:3.3 - http://objenesis.org/objenesis)
* Objenesis (org.objenesis:objenesis:3.4 - http://objenesis.org/objenesis)
* opencsv (net.sf.opencsv:opencsv:2.3 - http://opencsv.sf.net)
* Open JSON (com.tdunning:json:1.8 - https://github.com/tdunning/open-json)
* Open JSON (com.tdunning:json:1.8 - https://github.com/tdunning/ open-json)
* OpenTelemetry Java (io.opentelemetry:opentelemetry-api:1.15.0 - https://github.com/open-telemetry/opentelemetry-java)
* OpenTelemetry Java (io.opentelemetry:opentelemetry-context:1.15.0 - https://github.com/open-telemetry/opentelemetry-java)
* OpenTelemetry Java (io.opentelemetry:opentelemetry-semconv:1.15.0-alpha - https://github.com/open-telemetry/opentelemetry-java)
Expand Down
5 changes: 2 additions & 3 deletions LICENSE-binary
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ The license texts of these dependencies can be found in the licenses directory.

3-Clause BSD License

* Kryo (com.esotericsoftware:kryo:5.6.0 - https://github.com/EsotericSoftware/kryo/kryo)
* Kryo (com.esotericsoftware:kryo:5.6.2 - https://github.com/EsotericSoftware/kryo/kryo)
* MinLog (com.esotericsoftware:minlog:1.3.1 - https://github.com/EsotericSoftware/minlog)
* Protocol Buffers [Core] (com.google.protobuf:protobuf-java:3.3.0 - https://developers.google.com/protocol-buffers/protobuf-java/)
* ReflectASM (com.esotericsoftware:reflectasm:1.11.9 - https://github.com/EsotericSoftware/reflectasm)
Expand Down Expand Up @@ -939,8 +939,7 @@ The license texts of these dependencies can be found in the licenses directory.
* Netty/Transport/Native/Unix/Common (io.netty:netty-transport-native-unix-common:4.1.112.Final - https://netty.io/netty-transport-native-unix-common/)
* Netty/Transport (io.netty:netty-transport:4.1.112.Final - https://netty.io/netty-transport/)
* Nimbus JOSE+JWT (com.nimbusds:nimbus-jose-jwt:9.37.2 - https://bitbucket.org/connect2id/nimbus-jose-jwt)
* Objenesis (org.objenesis:objenesis:2.5.1 - http://objenesis.org)
* Objenesis (org.objenesis:objenesis:3.3 - http://objenesis.org/objenesis)
* Objenesis (org.objenesis:objenesis:3.4 - http://objenesis.org/objenesis)
* opencsv (net.sf.opencsv:opencsv:2.3 - http://opencsv.sf.net)
* Open JSON (com.tdunning:json:1.8 - https://github.com/tdunning/open-json)
* OpenTelemetry Java (io.opentelemetry:opentelemetry-api:1.15.0 - https://github.com/open-telemetry/opentelemetry-java)
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@
<hadoop.version>3.4.1</hadoop.version>
<hdfs.version>${hadoop.version}</hdfs.version>
<hbase.version>2.6.1-hadoop3</hbase.version>
<kryo.version>5.6.0</kryo.version>
<kryo.version>5.6.2</kryo.version>
<objensis.version>3.4</objensis.version>
<jakarta.servlet.version>5.0.0</jakarta.servlet.version>
<joda-time.version>2.12.7</joda-time.version>
<thrift.version>0.19.0</thrift.version>
Expand Down Expand Up @@ -572,6 +573,11 @@
<artifactId>kryo</artifactId>
<version>${kryo.version}</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>${objensis.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
Expand Down