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
8 changes: 5 additions & 3 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@

<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
<!-- Drop-in replacement for EOL log4j 1.x (keeps the org.apache.log4j
packages) without CVE-2019-17571 / CVE-2022-23302/23305/23307. -->
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>1.2.25</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
5 changes: 3 additions & 2 deletions examples/spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${dep.jackson.version}</version>
<version>${dep.jackson.databind.version}</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -217,7 +217,8 @@
<id>spark-3.1</id>
<properties>
<spark.binary.version>3.1</spark.binary.version>
<dep.jackson.version>2.10.0</dep.jackson.version>
<dep.jackson.version>2.10.5</dep.jackson.version>
<dep.jackson.databind.version>2.10.5.1</dep.jackson.databind.version>
</properties>
</profile>
</profiles>
Expand Down
18 changes: 11 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<snappy.version>1.1.2.6</snappy.version>
<snappy.version>1.1.10.7</snappy.version>
<hadoop.version>2.7.2</hadoop.version>
<httpclient.version>4.3.4</httpclient.version>
<httpcore.version>4.3-alpha1</httpcore.version>
<httpclient.version>4.5.14</httpclient.version>
<httpcore.version>4.4.16</httpcore.version>
<scala.binary.version>2.12</scala.binary.version>
<scala.version>2.12.10</scala.version>
<hadoop.deps.scope>compile</hadoop.deps.scope>
Expand All @@ -138,7 +138,10 @@
<scala.deps.scope>compile</scala.deps.scope>
<dev.path>${basedir}/dev</dev.path>
<spark.master.url>local[2]</spark.master.url>
<dep.jackson.version>2.6.5</dep.jackson.version>
<!-- Aligned with the jackson shipped by the default Spark (3.3.3) runtime.
2.6.5 carried multiple deserialization RCE CVEs (e.g. CVE-2017-7525). -->
<dep.jackson.version>2.13.4</dep.jackson.version>
<dep.jackson.databind.version>2.13.4.2</dep.jackson.databind.version>
<hdfs.url>local</hdfs.url>
<presto.jdbc.url>localhost:8086</presto.jdbc.url>
<!-- prestosql by default-->
Expand Down Expand Up @@ -375,7 +378,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -513,7 +516,7 @@
<id>hadoop-2.8</id>
<properties>
<hadoop.version>2.8.3</hadoop.version>
<httpclient.version>4.5.2</httpclient.version>
<httpclient.version>4.5.14</httpclient.version>
</properties>
</profile>
<profile>
Expand Down Expand Up @@ -671,7 +674,8 @@
<spark.version>3.1.1</spark.version>
<scala.binary.version>2.12</scala.binary.version>
<scala.version>2.12.8</scala.version>
<dep.jackson.version>2.10.0</dep.jackson.version>
<dep.jackson.version>2.10.5</dep.jackson.version>
<dep.jackson.databind.version>2.10.5.1</dep.jackson.databind.version>
</properties>
<build>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion sdk/sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${dep.jackson.version}</version>
<version>${dep.jackson.databind.version}</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
Expand Down
Loading