Skip to content

Commit

Permalink
Add missing @column annotations to DependencyListReport
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Apr 8, 2023
1 parent 5789fbf commit ede623c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,16 @@ public static class Row {
description = "The version of Gradle project or Maven module requesting the dependency.")
String version;

@Column(displayName = "Dependency group id",
description = "The Group ID of the dependency.")
String dependencyGroupId;

@Column(displayName = "Dependency artifact id",
description = "The Artifact ID of the dependency.")
String dependencyArtifactId;

@Column(displayName = "Dependency version",
description = "The version of the dependency.")
String dependencyVersion;
}
}

0 comments on commit ede623c

Please sign in to comment.