From 81893c57596225b831dc0b9b4817bdec1d930573 Mon Sep 17 00:00:00 2001 From: cx-anand-nandeshwar <73646287+cx-anand-nandeshwar@users.noreply.github.com> Date: Fri, 1 Aug 2025 11:51:23 +0530 Subject: [PATCH 1/3] Change ScaPackageData, added two properties for hide dev and test dependencies --- .../com/checkmarx/ast/results/result/ScaPackageData.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/checkmarx/ast/results/result/ScaPackageData.java b/src/main/java/com/checkmarx/ast/results/result/ScaPackageData.java index 2583097f..3d8f429f 100644 --- a/src/main/java/com/checkmarx/ast/results/result/ScaPackageData.java +++ b/src/main/java/com/checkmarx/ast/results/result/ScaPackageData.java @@ -20,6 +20,8 @@ public class ScaPackageData { boolean outdated; boolean supportsQuickFix; String typeOfDependency; + boolean isDevelopmentDependency; + boolean isTestDependency; public ScaPackageData(@JsonProperty("Id") String id, @@ -27,7 +29,9 @@ public ScaPackageData(@JsonProperty("Id") String id, @JsonProperty("dependencyPaths") List> dependencyPaths, @JsonProperty("outdated") boolean outdated, @JsonProperty("supportsQuickFix") boolean supportsQuickFix, - @JsonProperty("typeOfDependency") String typeOfDependency) { + @JsonProperty("typeOfDependency") String typeOfDependency, + @JsonProperty("isDevelopmentDependency") boolean isDevelopmentDependency, + @JsonProperty("isTestDependency") boolean isTestDependency) { Id = id; this.fixLink = fixLink; @@ -35,5 +39,7 @@ public ScaPackageData(@JsonProperty("Id") String id, this.outdated = outdated; this.supportsQuickFix = supportsQuickFix; this.typeOfDependency = typeOfDependency; + this.isDevelopmentDependency = isDevelopmentDependency; + this.isTestDependency = isTestDependency; } } From 59c1901d35dcb5c77c6a44b3a92db387cd13e034 Mon Sep 17 00:00:00 2001 From: cx-anand-nandeshwar <73646287+cx-anand-nandeshwar@users.noreply.github.com> Date: Tue, 5 Aug 2025 13:37:50 +0530 Subject: [PATCH 2/3] Test developer --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 1fa3c606..b7028406 100644 --- a/pom.xml +++ b/pom.xml @@ -233,5 +233,11 @@ Checkmarx https://www.checkmarx.com/ + + Anand Nandeshwar + anand.nandeshwar@checkmarx.com + Checkmarx + https://www.checkmarx.com/ + From d71b79b770b3e42fd65f85cd696a28a38b43f66b Mon Sep 17 00:00:00 2001 From: cx-anand-nandeshwar <73646287+cx-anand-nandeshwar@users.noreply.github.com> Date: Wed, 6 Aug 2025 13:29:05 +0530 Subject: [PATCH 3/3] Remove developer --- pom.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pom.xml b/pom.xml index 86e79017..0d528678 100644 --- a/pom.xml +++ b/pom.xml @@ -227,12 +227,6 @@ - - Rahul Pidde - rahul.pidde@checkmarx.com - Checkmarx - https://www.checkmarx.com/ - Anand Nandeshwar anand.nandeshwar@checkmarx.com