This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 4d7da0abab Fix json-smart version (#10150)
4d7da0abab is described below
commit 4d7da0abab9563d95d139e11d054da2f0f5d45d8
Author: Xiang Fu <[email protected]>
AuthorDate: Thu Jan 19 17:37:35 2023 -0800
Fix json-smart version (#10150)
---
.github/workflows/pinot_vuln_check.yml | 2 +-
pom.xml | 6 ++++++
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/pinot_vuln_check.yml
b/.github/workflows/pinot_vuln_check.yml
index 937c9630c9..e471f88049 100644
--- a/.github/workflows/pinot_vuln_check.yml
+++ b/.github/workflows/pinot_vuln_check.yml
@@ -61,7 +61,7 @@ jobs:
output: 'trivy-results.sarif'
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- timeout: '10'
+ timeout: '10m'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
diff --git a/pom.xml b/pom.xml
index 9f694136de..4c9b0510ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -135,6 +135,7 @@
<hadoop.version>2.10.1</hadoop.version>
<antlr.version>4.6</antlr.version>
<jsonpath.version>2.7.0</jsonpath.version>
+ <jsonsmart.version>2.4.7</jsonsmart.version>
<quartz.version>2.3.2</quartz.version>
<calcite.version>1.29.0</calcite.version>
<lucene.version>8.2.0</lucene.version>
@@ -902,6 +903,11 @@
<artifactId>json-path</artifactId>
<version>${jsonpath.version}</version>
</dependency>
+ <dependency>
+ <groupId>net.minidev</groupId>
+ <artifactId>json-smart</artifactId>
+ <version>${jsonsmart.version}</version>
+ </dependency>
<dependency>
<groupId>org.apache.calcite</groupId>
<artifactId>calcite-core</artifactId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]