Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,5 +233,11 @@
<organization>Checkmarx</organization>
<organizationUrl>https://www.checkmarx.com/</organizationUrl>
</developer>
<developer>
<name>Anand Nandeshwar</name>
<email>anand.nandeshwar@checkmarx.com</email>
Comment thread
cx-anand-nandeshwar marked this conversation as resolved.
<organization>Checkmarx</organization>
<organizationUrl>https://www.checkmarx.com/</organizationUrl>
</developer>
</developers>
</project>
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,
Comment thread
cx-anand-nandeshwar marked this conversation as resolved.
@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;
}
}
Loading