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
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@

<developers>
<developer>
<name>Rahul Pidde</name>
<email>rahul.pidde@checkmarx.com</email>
<name>Anand Nandeshwar</name>
<email>anand.nandeshwar@checkmarx.com</email>
<organization>Checkmarx</organization>
<organizationUrl>https://www.checkmarx.com/</organizationUrl>
</developer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,26 @@ public class ScaPackageData {
boolean outdated;
boolean supportsQuickFix;
String typeOfDependency;
boolean isDevelopmentDependency;
boolean isTestDependency;


public ScaPackageData(@JsonProperty("Id") String id,
@JsonProperty("fixLink") String fixLink,
@JsonProperty("dependencyPaths") List<List<DependencyPath>> 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;
this.dependencyPaths = dependencyPaths;
this.outdated = outdated;
this.supportsQuickFix = supportsQuickFix;
this.typeOfDependency = typeOfDependency;
this.isDevelopmentDependency = isDevelopmentDependency;
this.isTestDependency = isTestDependency;
}
}