Skip to content

Commit e1563e0

Browse files
Add additional info to coordinates (#5149)
1 parent 36c555e commit e1563e0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pkg/versioning/versioning.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ import (
1313

1414
// Coordinates to address the artifact coordinates like groupId, artifactId, version and packaging
1515
type Coordinates struct {
16-
GroupID string
17-
ArtifactID string
18-
Version string
19-
Packaging string
20-
BuildPath string
21-
URL string
22-
PURL string
16+
GroupID string `json:"groupId"`
17+
ArtifactID string `json:"artifactId"`
18+
Version string `json:"version"`
19+
Packaging string `json:"packaging"`
20+
BuildPath string `json:"buildPath"`
21+
URL string `json:"url"`
22+
PURL string `json:"purl"`
2323
}
2424

2525
// Artifact defines the versioning operations for various build tools

0 commit comments

Comments
 (0)