Skip to content

Commit

Permalink
Add additional info to coordinates (#5149)
Browse files Browse the repository at this point in the history
  • Loading branch information
D074360 authored Oct 16, 2024
1 parent 36c555e commit e1563e0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkg/versioning/versioning.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import (

// Coordinates to address the artifact coordinates like groupId, artifactId, version and packaging
type Coordinates struct {
GroupID string
ArtifactID string
Version string
Packaging string
BuildPath string
URL string
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"`
}

// Artifact defines the versioning operations for various build tools
Expand Down

0 comments on commit e1563e0

Please sign in to comment.