mirror of
https://github.com/aquasecurity/trivy.git
synced 2026-02-02 14:53:21 +08:00
18 lines
406 B
Go
18 lines
406 B
Go
package pom
|
|
|
|
type Metadata struct {
|
|
GroupId string `xml:"groupId"`
|
|
ArtifactId string `xml:"artifactId"`
|
|
Versioning Versioning `xml:"versioning"`
|
|
Version string `xml:"version"`
|
|
}
|
|
|
|
type Versioning struct {
|
|
SnapshotVersions []SnapshotVersion `xml:"snapshotVersions>snapshotVersion"`
|
|
}
|
|
|
|
type SnapshotVersion struct {
|
|
Extension string `xml:"extension"`
|
|
Value string `xml:"value"`
|
|
}
|