We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36c555e commit e1563e0Copy full SHA for e1563e0
pkg/versioning/versioning.go
@@ -13,13 +13,13 @@ import (
13
14
// Coordinates to address the artifact coordinates like groupId, artifactId, version and packaging
15
type Coordinates struct {
16
- GroupID string
17
- ArtifactID string
18
- Version string
19
- Packaging string
20
- BuildPath string
21
- URL string
22
- PURL string
+ GroupID string `json:"groupId"`
+ ArtifactID string `json:"artifactId"`
+ Version string `json:"version"`
+ Packaging string `json:"packaging"`
+ BuildPath string `json:"buildPath"`
+ URL string `json:"url"`
+ PURL string `json:"purl"`
23
}
24
25
// Artifact defines the versioning operations for various build tools
0 commit comments